We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b48c257 commit c1c1c44Copy full SHA for c1c1c44
1 file changed
frontend/src/App.vue
@@ -70,7 +70,7 @@ const openFile = async (file, connection_type) => {
70
if (!file)
71
return;
72
73
- watch(coinListViewRef, (newVal) => {
+ const stopClearWatch = watch(coinListViewRef, (newVal) => {
74
if (newVal) {
75
coinListViewRef.value.clear()
76
}
@@ -99,6 +99,8 @@ const openFile = async (file, connection_type) => {
99
100
await coinListViewRef.value.onOpenFile()
101
102
+
103
+ stopClearWatch()
104
105
106
const handleRemoteFileSelected = async (file) => {
0 commit comments