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