diff --git a/cookbook/helper/mdx_attributes.py b/cookbook/helper/mdx_attributes.py
index 6eeaecd3d..d9a62c26f 100644
--- a/cookbook/helper/mdx_attributes.py
+++ b/cookbook/helper/mdx_attributes.py
@@ -6,8 +6,8 @@ class StyleTreeprocessor(Treeprocessor):
def run_processor(self, node):
for child in node:
- if child.tag == "table":
- child.set("class", "markdown-body")
+ # if child.tag == "table":
+ # child.set("class", "markdown-body")
if child.tag == "img":
child.set("class", "img-fluid")
self.run_processor(child)
diff --git a/vue3/src/pages/RecipeImportPage.vue b/vue3/src/pages/RecipeImportPage.vue
index 81c0486e6..e00c38b05 100644
--- a/vue3/src/pages/RecipeImportPage.vue
+++ b/vue3/src/pages/RecipeImportPage.vue
@@ -66,7 +66,7 @@
:disabled="!useUserPreferenceStore().serverSettings.enableAiImport">
- Set AI_API_KEY on server to use AI
+ Set AI_API_KEY on server to use AI
@@ -310,11 +310,15 @@
-
+
-
- {{ $t('Unit') }}
+
+
+
+
+
+ {{ $t('Unit') }}
@@ -472,6 +476,7 @@ import ImportLogViewer from "@/components/display/ImportLogViewer.vue";
import {DateTime} from "luxon";
import {useDjangoUrls} from "@/composables/useDjangoUrls";
import bookmarkletJs from '@/assets/bookmarklet_v3?url'
+import BtnCopy from "@/components/buttons/BtnCopy.vue";
const params = useUrlSearchParams('history', {})
const {mobile} = useDisplay()