Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
minerva
core
Commits
e6ae3784
Commit
e6ae3784
authored
Apr 20, 2021
by
Piotr Gawron
Browse files
tests fixed
parent
e5765bd5
Pipeline
#40150
passed with stage
in 28 minutes and 5 seconds
Changes
2
Pipelines
1
Expand all
Hide whitespace changes
Inline
Side-by-side
frontend-js/package-lock.json
View file @
e6ae3784
This diff is collapsed.
Click to expand it.
frontend-js/src/main/js/GuiConnector.js
View file @
e6ae3784
...
...
@@ -114,10 +114,14 @@ GuiConnector.prototype.init = function () {
* @private
*/
self
.
_configuration
=
null
;
return
ServerConnector
.
getConfiguration
().
then
(
function
(
configuration
)
{
self
.
_configuration
=
configuration
;
})
};
if
(
ServerConnector
!==
undefined
)
{
return
ServerConnector
.
getConfiguration
().
then
(
function
(
configuration
)
{
self
.
_configuration
=
configuration
;
});
}
else
{
return
Promise
.
resolve
();
}
}
var
newUrl
=
""
;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment