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
9dbaf1c3
Commit
9dbaf1c3
authored
Jan 27, 2020
by
Piotr Gawron
Browse files
handle forbidden response code properly
parent
154e2555
Changes
2
Hide whitespace changes
Inline
Side-by-side
CHANGELOG
View file @
9dbaf1c3
...
...
@@ -18,6 +18,8 @@ minerva (14.0.8) stable; urgency=medium
non
-
default
Browser
zoom
level
(#
1048
)
*
Bug
fix
:
project
without
background
overlay
but
with
some
custom
data
overlays
crashed
with
an
error
(#
1066
)
*
Bug
fix
:
when
session
expires
updating
options
in
configuration
panel
threw
unhandled
error
(#
1068
)
--
Piotr
Gawron
<
piotr
.
gawron
@
uni
.
lu
>
Thu
,
23
Jan
2020
12
:
00
:
00
+
0200
...
...
frontend-js/src/main/js/ServerConnector.js
View file @
9dbaf1c3
...
...
@@ -1107,7 +1107,9 @@ ServerConnector.updateConfigurationOption = function (option) {
value
:
option
.
getValue
()
}
};
return
self
.
sendPatchRequest
(
self
.
getConfigurationOptionUrl
(
queryParams
),
filterParams
);
return
self
.
sendPatchRequest
(
self
.
getConfigurationOptionUrl
(
queryParams
),
filterParams
).
catch
(
function
(
error
)
{
return
self
.
_processUpdateError
(
error
);
});
};
ServerConnector
.
getModels
=
function
(
projectId
)
{
...
...
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