@@ -44,8 +44,12 @@
accessControl = channel.access_control;
};
- $: if (channel) {
- init();
+ $: if (show) {
+ if (channel) {
+ init();
+ }
+ } else {
+ resetHandler();
}
let showDeleteConfirmDialog = false;
@@ -68,6 +72,12 @@
show = false;
+
+ const resetHandler = () => {
+ name = '';
+ accessControl = {};
+ loading = false;
+ };
</script>
<Modal size="sm" bind:show>