Skip to content

Commit

Permalink
Removed test feature from edit dialog
Browse files Browse the repository at this point in the history
  • Loading branch information
chrishamm committed Dec 14, 2023
1 parent bba9611 commit 553f68a
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions src/components/dialogs/FileEditDialog.vue
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
<v-btn icon dark @click="close(false)">
<v-icon>mdi-close</v-icon>
</v-btn>
<v-toolbar-title @click="showSearch">{{ filename }}</v-toolbar-title>
<v-toolbar-title>{{ filename }}</v-toolbar-title>

<v-spacer />

Expand Down Expand Up @@ -153,9 +153,6 @@ export default Vue.extend({
}
},
methods: {
showSearch() {
this.monacoEditor!.getAction('actions.find')!.run();
},
close(fileSaved: boolean) {
if (this.valueChanged && !fileSaved && !confirm(this.$t("dialog.fileEdit.confirmClose"))) {
return;
Expand Down Expand Up @@ -288,4 +285,4 @@ export default Vue.extend({
}
}
});
</script>
</script>

0 comments on commit 553f68a

Please sign in to comment.