diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2023-01-06 09:41:14 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2023-01-06 09:41:14 +0900 |
| commit | 372a17d7f0fd4e95086b5e9685d4c21a3550422b (patch) | |
| tree | e6c4dca5d37651f6479df74f624bd6ee252b75f4 /packages/frontend/src/components/MkUserSelectDialog.vue | |
| parent | fix(backend): Set correct access control of admin/drive/files (#9472) (diff) | |
| download | sharkey-372a17d7f0fd4e95086b5e9685d4c21a3550422b.tar.gz sharkey-372a17d7f0fd4e95086b5e9685d4c21a3550422b.tar.bz2 sharkey-372a17d7f0fd4e95086b5e9685d4c21a3550422b.zip | |
refactor
Diffstat (limited to 'packages/frontend/src/components/MkUserSelectDialog.vue')
| -rw-r--r-- | packages/frontend/src/components/MkUserSelectDialog.vue | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/packages/frontend/src/components/MkUserSelectDialog.vue b/packages/frontend/src/components/MkUserSelectDialog.vue index 1d31769c30..c8a2fd8cc1 100644 --- a/packages/frontend/src/components/MkUserSelectDialog.vue +++ b/packages/frontend/src/components/MkUserSelectDialog.vue @@ -1,5 +1,5 @@ <template> -<XModalWindow +<MkModalWindow ref="dialogEl" :with-ok-button="true" :ok-button-disabled="selected == null" @@ -48,7 +48,7 @@ </div> </div> </div> -</XModalWindow> +</MkModalWindow> </template> <script lang="ts" setup> @@ -56,7 +56,7 @@ import { nextTick, onMounted } from 'vue'; import * as misskey from 'misskey-js'; import MkInput from '@/components/form/input.vue'; import FormSplit from '@/components/form/split.vue'; -import XModalWindow from '@/components/MkModalWindow.vue'; +import MkModalWindow from '@/components/MkModalWindow.vue'; import * as os from '@/os'; import { defaultStore } from '@/store'; import { i18n } from '@/i18n'; |