diff --git a/frontend/src/components/Settings/Migration/UploadMigrationButton.vue b/frontend/src/components/Settings/Migration/UploadMigrationButton.vue index c9072cc2f57d..5b8193a13ba4 100644 --- a/frontend/src/components/Settings/Migration/UploadMigrationButton.vue +++ b/frontend/src/components/Settings/Migration/UploadMigrationButton.vue @@ -6,6 +6,8 @@ v-model="file" accept=".zip" @change="upload" + :prepend-icon="icon" + class="file-icon" > @@ -18,6 +20,7 @@ export default { return { file: null, loading: false, + icon: "mdi-paperclip", }; }, methods: { @@ -32,6 +35,7 @@ export default { this.loading = false; this.$emit("uploaded"); this.file = null; + this.icon = "mdi-check"; } }, }, @@ -39,4 +43,7 @@ export default { \ No newline at end of file