We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4ac4f93 commit 26bca38Copy full SHA for 26bca38
1 file changed
ui/src/views/AdminViews/VisibilityView.vue
@@ -212,13 +212,13 @@ export default {
212
async changeVisibility(changeField, val) {
213
if (changeField == "TIMER_TIME" || changeField == "SPONSORS_INPUT_TIME") {
214
if (window.confirm("Pokušavate promijeniti jedno od VREMENA, jeste li sigurni?")) {
215
- await api.put(process.env.VUE_APP_BASE_URL + '/visibility/' + changeField + '/',
+ await api.put('/visibility/' + changeField + '/',
216
{ visible: val },
217
)
218
await store.dispatch("fetchVisibilityData")
219
}
220
} else {
221
222
223
224
0 commit comments