Skip to content

Commit e764a09

Browse files
committed
some more cleanup
1 parent 87b182d commit e764a09

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

SECURITY.md

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
| Version | Supported |
66
| ------- | ------------------ |
77
| 2.X.X | :white_check_mark: |
8+
| 2.X.X | EOL 31.03.2025 |
89
| 1.X.X | EOL 28.09.2024 |
910
| 0.X.X | |
1011

client/src/layouts/default/View.vue

+4-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,10 @@ const { cookies } = useCookies();
1616
import axios from 'axios'
1717
//axios.defaults.headers.common['User-Agent'] = 'Kubero/3.x'
1818
//axios.defaults.headers.common['Authorization'] = 'Bearer ' + localStorage.getItem('kubero.JWT_TOKEN')
19-
axios.defaults.headers.common['Authorization'] = 'Bearer ' + cookies.get("kubero.JWT_TOKEN")
19+
const token = cookies.get("kubero.JWT_TOKEN")
20+
if (token) {
21+
axios.defaults.headers.common['Authorization'] = 'Bearer ' + token
22+
}
2023
//axios.defaults.headers.common['vary'] = 'Accept-Encoding'
2124
2225
export default defineComponent({

0 commit comments

Comments
 (0)