View | Details | Raw Unified | Return to bug 33408
Collapse All | Expand All

(-)a/koha-tmpl/intranet-tmpl/prog/js/vue/fetch/system-preferences-api-client.js (-2 / +1 lines)
Lines 11-17 export class SysprefAPIClient extends HttpClient { Link Here
11
        return {
11
        return {
12
            get: (variable) =>
12
            get: (variable) =>
13
                this.get({
13
                this.get({
14
                    endpoint: `/?pref=${variable}`,
14
                    endpoint: "/?pref=" + variable,
15
                }),
15
                }),
16
            update: (variable, value) =>
16
            update: (variable, value) =>
17
                this.post({
17
                this.post({
18
- 

Return to bug 33408