diff options
| author | Kagami Sascha Rosylight <saschanaz@outlook.com> | 2022-12-22 16:51:48 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-12-22 16:51:48 +0900 |
| commit | 049373de3ba6a48153c3bd3b6c02253f2a4aa338 (patch) | |
| tree | 40238238dc1160d17c7ee083b15f7f6ae8fd9e9f /packages/client/src/components/MkUserSelectDialog.vue | |
| parent | style: add missing trailing commas (#9387) (diff) | |
| download | sharkey-049373de3ba6a48153c3bd3b6c02253f2a4aa338.tar.gz sharkey-049373de3ba6a48153c3bd3b6c02253f2a4aa338.tar.bz2 sharkey-049373de3ba6a48153c3bd3b6c02253f2a4aa338.zip | |
style(client): fix `vue/v-on-event-hyphenation` (#9389)
Diffstat (limited to 'packages/client/src/components/MkUserSelectDialog.vue')
| -rw-r--r-- | packages/client/src/components/MkUserSelectDialog.vue | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/client/src/components/MkUserSelectDialog.vue b/packages/client/src/components/MkUserSelectDialog.vue index 07caedfe3a..1d31769c30 100644 --- a/packages/client/src/components/MkUserSelectDialog.vue +++ b/packages/client/src/components/MkUserSelectDialog.vue @@ -12,11 +12,11 @@ <div class="tbhwbxda"> <div class="form"> <FormSplit :min-width="170"> - <MkInput v-model="username" :autofocus="true" @update:modelValue="search"> + <MkInput v-model="username" :autofocus="true" @update:model-value="search"> <template #label>{{ i18n.ts.username }}</template> <template #prefix>@</template> </MkInput> - <MkInput v-model="host" @update:modelValue="search"> + <MkInput v-model="host" @update:model-value="search"> <template #label>{{ i18n.ts.host }}</template> <template #prefix>@</template> </MkInput> |