diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2023-01-07 14:59:54 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2023-01-07 14:59:54 +0900 |
| commit | d09e1f492577f5987f89b926646aaf8daf1726ef (patch) | |
| tree | 413f71163fb9cab1f10811f84ca9934fe6294bd6 /packages/frontend/src/pages/settings/webhook.edit.vue | |
| parent | fix #9483 (diff) | |
| download | misskey-d09e1f492577f5987f89b926646aaf8daf1726ef.tar.gz misskey-d09e1f492577f5987f89b926646aaf8daf1726ef.tar.bz2 misskey-d09e1f492577f5987f89b926646aaf8daf1726ef.zip | |
refactor
Diffstat (limited to 'packages/frontend/src/pages/settings/webhook.edit.vue')
| -rw-r--r-- | packages/frontend/src/pages/settings/webhook.edit.vue | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/packages/frontend/src/pages/settings/webhook.edit.vue b/packages/frontend/src/pages/settings/webhook.edit.vue index 8c8492ba5f..828018b5aa 100644 --- a/packages/frontend/src/pages/settings/webhook.edit.vue +++ b/packages/frontend/src/pages/settings/webhook.edit.vue @@ -17,17 +17,17 @@ <template #label>Events</template> <div class="_gaps_s"> - <FormSwitch v-model="event_follow">Follow</FormSwitch> - <FormSwitch v-model="event_followed">Followed</FormSwitch> - <FormSwitch v-model="event_note">Note</FormSwitch> - <FormSwitch v-model="event_reply">Reply</FormSwitch> - <FormSwitch v-model="event_renote">Renote</FormSwitch> - <FormSwitch v-model="event_reaction">Reaction</FormSwitch> - <FormSwitch v-model="event_mention">Mention</FormSwitch> + <MkSwitch v-model="event_follow">Follow</MkSwitch> + <MkSwitch v-model="event_followed">Followed</MkSwitch> + <MkSwitch v-model="event_note">Note</MkSwitch> + <MkSwitch v-model="event_reply">Reply</MkSwitch> + <MkSwitch v-model="event_renote">Renote</MkSwitch> + <MkSwitch v-model="event_reaction">Reaction</MkSwitch> + <MkSwitch v-model="event_mention">Mention</MkSwitch> </div> </FormSection> - <FormSwitch v-model="active">Active</FormSwitch> + <MkSwitch v-model="active">Active</MkSwitch> <div class="_buttons"> <MkButton primary inline @click="save"><i class="ti ti-check"></i> {{ i18n.ts.save }}</MkButton> @@ -39,7 +39,7 @@ import { } from 'vue'; import FormInput from '@/components/form/input.vue'; import FormSection from '@/components/form/section.vue'; -import FormSwitch from '@/components/form/switch.vue'; +import MkSwitch from '@/components/MkSwitch.vue'; import MkButton from '@/components/MkButton.vue'; import * as os from '@/os'; import { i18n } from '@/i18n'; |