diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/assets/app.scss | 6 | ||||
-rw-r--r-- | src/components/services/Radarr.vue | 10 | ||||
-rw-r--r-- | src/components/services/Sonarr.vue | 10 |
3 files changed, 8 insertions, 18 deletions
diff --git a/src/assets/app.scss b/src/assets/app.scss index 6bb5068..bdbe441 100644 --- a/src/assets/app.scss +++ b/src/assets/app.scss | |||
@@ -140,8 +140,7 @@ body { | |||
140 | } | 140 | } |
141 | } | 141 | } |
142 | } | 142 | } |
143 | .navbar, | 143 | .navbar { |
144 | .navbar-menu { | ||
145 | background-color: var(--highlight-secondary); | 144 | background-color: var(--highlight-secondary); |
146 | 145 | ||
147 | a { | 146 | a { |
@@ -153,6 +152,9 @@ body { | |||
153 | background-color: var(--highlight-hover); | 152 | background-color: var(--highlight-hover); |
154 | } | 153 | } |
155 | } | 154 | } |
155 | .navbar-menu { | ||
156 | background-color: inherit; | ||
157 | } | ||
156 | } | 158 | } |
157 | .navbar-end { | 159 | .navbar-end { |
158 | text-align: right; | 160 | text-align: right; |
diff --git a/src/components/services/Radarr.vue b/src/components/services/Radarr.vue index 93831a7..9d38292 100644 --- a/src/components/services/Radarr.vue +++ b/src/components/services/Radarr.vue | |||
@@ -70,10 +70,7 @@ export default { | |||
70 | }, | 70 | }, |
71 | methods: { | 71 | methods: { |
72 | fetchConfig: function () { | 72 | fetchConfig: function () { |
73 | fetch(`${this.item.url}/api/health`, { | 73 | fetch(`${this.item.url}/api/health?apikey=${this.item.apikey}`) |
74 | credentials: "include", | ||
75 | headers: { "X-Api-Key": `${this.item.apikey}` }, | ||
76 | }) | ||
77 | .then((response) => { | 74 | .then((response) => { |
78 | if (response.status != 200) { | 75 | if (response.status != 200) { |
79 | throw new Error(response.statusText); | 76 | throw new Error(response.statusText); |
@@ -95,10 +92,7 @@ export default { | |||
95 | console.error(e); | 92 | console.error(e); |
96 | this.serverError = true; | 93 | this.serverError = true; |
97 | }); | 94 | }); |
98 | fetch(`${this.item.url}/api/queue`, { | 95 | fetch(`${this.item.url}/api/queue?apikey=${this.item.apikey}`) |
99 | credentials: "include", | ||
100 | headers: { "X-Api-Key": `${this.item.apikey}` }, | ||
101 | }) | ||
102 | .then((response) => { | 96 | .then((response) => { |
103 | if (response.status != 200) { | 97 | if (response.status != 200) { |
104 | throw new Error(response.statusText); | 98 | throw new Error(response.statusText); |
diff --git a/src/components/services/Sonarr.vue b/src/components/services/Sonarr.vue index 8cebac4..7851b6b 100644 --- a/src/components/services/Sonarr.vue +++ b/src/components/services/Sonarr.vue | |||
@@ -70,10 +70,7 @@ export default { | |||
70 | }, | 70 | }, |
71 | methods: { | 71 | methods: { |
72 | fetchConfig: function () { | 72 | fetchConfig: function () { |
73 | fetch(`${this.item.url}/api/health`, { | 73 | fetch(`${this.item.url}/api/health?apikey=${this.item.apikey}`) |
74 | credentials: "include", | ||
75 | headers: { "X-Api-Key": `${this.item.apikey}` }, | ||
76 | }) | ||
77 | .then((response) => { | 74 | .then((response) => { |
78 | if (response.status != 200) { | 75 | if (response.status != 200) { |
79 | throw new Error(response.statusText); | 76 | throw new Error(response.statusText); |
@@ -95,10 +92,7 @@ export default { | |||
95 | console.error(e); | 92 | console.error(e); |
96 | this.serverError = true; | 93 | this.serverError = true; |
97 | }); | 94 | }); |
98 | fetch(`${this.item.url}/api/queue`, { | 95 | fetch(`${this.item.url}/api/queue?apikey=${this.item.apikey}`) |
99 | credentials: "include", | ||
100 | headers: { "X-Api-Key": `${this.item.apikey}` }, | ||
101 | }) | ||
102 | .then((response) => { | 96 | .then((response) => { |
103 | if (response.status != 200) { | 97 | if (response.status != 200) { |
104 | throw new Error(response.statusText); | 98 | throw new Error(response.statusText); |