Skip to content

Commit

Permalink
build: 5.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
zuihou committed Dec 31, 2024
1 parent 16f4c26 commit 6900eaf
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "lamp-web-pro",
"version": "5.0.3",
"version": "5.0.4",
"author": {
"name": "zuihou",
"email": "[email protected]",
Expand Down
2 changes: 1 addition & 1 deletion src/components/Tinymce/src/ImgUpload.vue
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@
// 增加token
const token = getToken();
if (token) {
headers[tokenKey] = `Bearer ${token}`;
headers[tokenKey] = `${token}`;
}
// 增加租户编码
if (multiTenantType !== MultiTenantTypeEnum.NONE) {
Expand Down
2 changes: 1 addition & 1 deletion src/utils/http/axios/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ function createAxios(opt?: Partial<CreateAxiosOptions>) {
{
// See https://developer.mozilla.org/en-US/docs/Web/HTTP/Authentication#authentication_schemes
// authentication schemes,e.g: Bearer
authenticationScheme: 'Bearer',
authenticationScheme: '',
// authenticationScheme: '',
timeout: globSetting.axiosTimeout,
// 基础接口地址
Expand Down

0 comments on commit 6900eaf

Please sign in to comment.