mirror of
https://github.com/freqtrade/frequi.git
synced 2024-11-10 10:21:55 +00:00
Clear selection state on close
This commit is contained in:
parent
641639448f
commit
243efd8d3d
|
@ -14,6 +14,14 @@ function fromTemplateApply() {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
const selTemplateName = ref<string>('');
|
const selTemplateName = ref<string>('');
|
||||||
|
watch(
|
||||||
|
() => visible.value,
|
||||||
|
(v) => {
|
||||||
|
if (v) {
|
||||||
|
selTemplateName.value = '';
|
||||||
|
}
|
||||||
|
},
|
||||||
|
);
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
|
|
Loading…
Reference in New Issue
Block a user