diff --git a/.shared/ui-ux-pro-max/scripts/__pycache__/core.cpython-312.pyc b/.shared/ui-ux-pro-max/scripts/__pycache__/core.cpython-312.pyc index 0348f1b..1eda2a2 100644 Binary files a/.shared/ui-ux-pro-max/scripts/__pycache__/core.cpython-312.pyc and b/.shared/ui-ux-pro-max/scripts/__pycache__/core.cpython-312.pyc differ diff --git a/.shared/ui-ux-pro-max/scripts/__pycache__/core.cpython-314.pyc b/.shared/ui-ux-pro-max/scripts/__pycache__/core.cpython-314.pyc new file mode 100644 index 0000000..5d26186 Binary files /dev/null and b/.shared/ui-ux-pro-max/scripts/__pycache__/core.cpython-314.pyc differ diff --git a/.shared/ui-ux-pro-max/scripts/__pycache__/design_system.cpython-312.pyc b/.shared/ui-ux-pro-max/scripts/__pycache__/design_system.cpython-312.pyc index 8d85fdd..eaeab5e 100644 Binary files a/.shared/ui-ux-pro-max/scripts/__pycache__/design_system.cpython-312.pyc and b/.shared/ui-ux-pro-max/scripts/__pycache__/design_system.cpython-312.pyc differ diff --git a/.shared/ui-ux-pro-max/scripts/__pycache__/design_system.cpython-314.pyc b/.shared/ui-ux-pro-max/scripts/__pycache__/design_system.cpython-314.pyc new file mode 100644 index 0000000..e5e299a Binary files /dev/null and b/.shared/ui-ux-pro-max/scripts/__pycache__/design_system.cpython-314.pyc differ diff --git a/apps/extension/options.html b/apps/extension/options.html index 3f807fe..e245df1 100644 --- a/apps/extension/options.html +++ b/apps/extension/options.html @@ -3,7 +3,7 @@ - BrowserBookmark Options + 云书签 选项
diff --git a/apps/extension/src/lib/api.js b/apps/extension/src/lib/api.js index af48a6b..aef6365 100644 --- a/apps/extension/src/lib/api.js +++ b/apps/extension/src/lib/api.js @@ -2,7 +2,7 @@ const BASE_URL = import.meta.env.VITE_SERVER_BASE_URL || "http://localhost:3001" export async function apiFetch(path, options = {}) { const headers = new Headers(options.headers || {}); - headers.set("Accept", "application/json"); + if (!headers.has("Accept")) headers.set("Accept", "application/json"); if (!(options.body instanceof FormData) && options.body != null) { headers.set("Content-Type", "application/json"); diff --git a/apps/extension/src/options/OptionsApp.vue b/apps/extension/src/options/OptionsApp.vue index 2649dfa..3638cd4 100644 --- a/apps/extension/src/options/OptionsApp.vue +++ b/apps/extension/src/options/OptionsApp.vue @@ -5,7 +5,7 @@ import { RouterLink, RouterView } from "vue-router";