diff --git a/packages/frontend/src/pages/room.default-heya-options.vue b/packages/frontend/src/pages/room.default-heya-options.vue index fa75f672c5..ad662a0ead 100644 --- a/packages/frontend/src/pages/room.default-heya-options.vue +++ b/packages/frontend/src/pages/room.default-heya-options.vue @@ -8,19 +8,34 @@ SPDX-License-Identifier: AGPL-3.0-only
- + - + - + - + + + + + + + + + +
@@ -48,6 +63,10 @@ const props = defineProps<{ const emit = defineEmits<{ (ev: 'update', v: SimpleHeyaOptions): void; }>(); + +function update(v: Partial) { + emit('update', { ...props.options, ...v }); +}