- {{$t('migration.you-can-import-recipes-from-either-a-zip-file-or-a-directory-located-in-the-app-data-migraiton-folder-please-review-the-documentation-to-ensure-your-directory-structure-matches-what-is-expected')}}
+ {{
+ $t(
+ "migration.you-can-import-recipes-from-either-a-zip-file-or-a-directory-located-in-the-app-data-migraiton-folder-please-review-the-documentation-to-ensure-your-directory-structure-matches-what-is-expected"
+ )
+ }}
@@ -13,27 +17,32 @@
:rules="[rules.required]"
>
-
- {{$t('migration.migrate')}}
-
-
-
- {{$t('general.delete')}}
-
-
-
-
-
-
-
+
+
+
+ {{ $t("migration.migrate") }}
+
+
+ {{ $t("general.delete") }}
+
+
+
+
+
+
+
import api from "../../../api";
import SuccessFailureAlert from "../../UI/SuccessFailureAlert";
-import UploadMigrationButton from "./UploadMigrationButton";
import Confirmation from "../../UI/Confirmation";
+import UploadBtn from "../../UI/UploadBtn";
export default {
components: {
SuccessFailureAlert,
- UploadMigrationButton,
Confirmation,
+ UploadBtn,
},
data() {
return {
@@ -63,7 +72,7 @@ export default {
availableImports: [],
selectedImport: null,
rules: {
- required: (v) => !!v || "Selection Required",
+ required: v => !!v || "Selection Required",
},
};
},
diff --git a/frontend/src/components/Settings/Theme/index.vue b/frontend/src/components/Settings/Theme/index.vue
index 438b72754..5b255879d 100644
--- a/frontend/src/components/Settings/Theme/index.vue
+++ b/frontend/src/components/Settings/Theme/index.vue
@@ -43,7 +43,7 @@
-
+
-
-
-
-
-
- Delete
-
+
+
+
+
+ Delete
+
+
+
@@ -123,15 +124,10 @@