diff --git a/src/components/mobile/ColorSelectionSheet.vue b/src/components/mobile/ColorSelectionSheet.vue index a521691e..e56d1ec8 100644 --- a/src/components/mobile/ColorSelectionSheet.vue +++ b/src/components/mobile/ColorSelectionSheet.vue @@ -69,7 +69,6 @@ export default { onColorClicked(colorInfo) { this.currentValue = colorInfo.color; this.$emit('update:modelValue', this.currentValue); - this.$emit('update:show', false); }, onSheetOpen(event) { this.currentValue = this.modelValue; diff --git a/src/components/mobile/IconSelectionSheet.vue b/src/components/mobile/IconSelectionSheet.vue index d3883233..a0fe0a56 100644 --- a/src/components/mobile/IconSelectionSheet.vue +++ b/src/components/mobile/IconSelectionSheet.vue @@ -89,7 +89,6 @@ export default { onIconClicked(iconInfo) { this.currentValue = iconInfo.id; this.$emit('update:modelValue', this.currentValue); - this.$emit('update:show', false); }, onSheetOpen(event) { this.currentValue = this.modelValue;