diff --git a/src/client/components/autocomplete.vue b/src/client/components/autocomplete.vue index 2ec6e8a3b9..1faa5aeb7d 100644 --- a/src/client/components/autocomplete.vue +++ b/src/client/components/autocomplete.vue @@ -376,7 +376,7 @@ export default defineComponent({ chooseUser() { this.close(); - const vm = os.popup(MkUserSelect, {}); + const vm = os.modal(MkUserSelect, {}); vm.$once('selected', user => { this.complete('user', user); }); diff --git a/src/client/components/deck/notifications-column.vue b/src/client/components/deck/notifications-column.vue index a8ffbaa575..94efe8a03f 100644 --- a/src/client/components/deck/notifications-column.vue +++ b/src/client/components/deck/notifications-column.vue @@ -43,7 +43,7 @@ export default defineComponent({ icon: faCog, text: this.$t('notificationSetting'), action: async () => { - os.popup(await import('../notification-setting-window.vue'), { + os.modal(await import('../notification-setting-window.vue'), { includingTypes: this.column.includingTypes, }).$on('ok', async ({ includingTypes }) => { this.$set(this.column, 'includingTypes', includingTypes); diff --git a/src/client/components/dialog.vue b/src/client/components/dialog.vue index 8a2edf9da4..141d2ab7f7 100644 --- a/src/client/components/dialog.vue +++ b/src/client/components/dialog.vue @@ -1,46 +1,44 @@ - - diff --git a/src/client/components/post-form.vue b/src/client/components/post-form.vue index 410ebb90cf..35739082f0 100644 --- a/src/client/components/post-form.vue +++ b/src/client/components/post-form.vue @@ -1,5 +1,5 @@