diff options
| author | syuilo <4439005+syuilo@users.noreply.github.com> | 2025-08-03 11:02:20 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-08-03 11:02:20 +0900 |
| commit | 6f3cc2cdf7e47a2dd4dd6d7478579746e2af652c (patch) | |
| tree | b6820cddaf963fe0489c7f1c44fd9324022c10e4 /packages/frontend/src/pages/admin/system-webhook.vue | |
| parent | perf(frontend): tweak css performance (diff) | |
| download | misskey-6f3cc2cdf7e47a2dd4dd6d7478579746e2af652c.tar.gz misskey-6f3cc2cdf7e47a2dd4dd6d7478579746e2af652c.tar.bz2 misskey-6f3cc2cdf7e47a2dd4dd6d7478579746e2af652c.zip | |
コントロールパネルの検索 (#16343)
* Update settings.vue
* Update settings.vue
* Update settings.vue
* Update settings.vue
* Update settings.vue
* Update performance.vue
* Update performance.vue
* Update performance.vue
* Update external-services.vue
* wip
* wip
* Update security.vue
* Update settings.vue
* Update CHANGELOG.md
* wip
* Update moderation.vue
* wip
* Update branding.vue
* wip
* Update email-settings.vue
* Update system-webhook.vue
* Update MkSuperMenu.vue
* Update index.vue
Diffstat (limited to 'packages/frontend/src/pages/admin/system-webhook.vue')
| -rw-r--r-- | packages/frontend/src/pages/admin/system-webhook.vue | 24 |
1 files changed, 14 insertions, 10 deletions
diff --git a/packages/frontend/src/pages/admin/system-webhook.vue b/packages/frontend/src/pages/admin/system-webhook.vue index d5402f608c..0fd255d5f6 100644 --- a/packages/frontend/src/pages/admin/system-webhook.vue +++ b/packages/frontend/src/pages/admin/system-webhook.vue @@ -6,17 +6,21 @@ SPDX-License-Identifier: AGPL-3.0-only <template> <PageWithHeader :actions="headerActions" :tabs="headerTabs"> <div class="_spacer" style="--MI_SPACER-w: 900px;"> - <div class="_gaps_m"> - <MkButton primary @click="onCreateWebhookClicked"> - <i class="ti ti-plus"></i> {{ i18n.ts._webhookSettings.createWebhook }} - </MkButton> + <SearchMarker path="/admin/system-webhook" label="SystemWebhook" :keywords="['webhook']" icon="ti ti-webhook"> + <div class="_gaps_m"> + <SearchMarker> + <MkButton primary @click="onCreateWebhookClicked"> + <i class="ti ti-plus"></i> <SearchLabel>{{ i18n.ts._webhookSettings.createWebhook }}</SearchLabel> + </MkButton> + </SearchMarker> - <FormSection> - <div class="_gaps"> - <XItem v-for="item in webhooks" :key="item.id" :entity="item" @edit="onEditButtonClicked" @delete="onDeleteButtonClicked"/> - </div> - </FormSection> - </div> + <FormSection> + <div class="_gaps"> + <XItem v-for="item in webhooks" :key="item.id" :entity="item" @edit="onEditButtonClicked" @delete="onDeleteButtonClicked"/> + </div> + </FormSection> + </div> + </SearchMarker> </div> </PageWithHeader> </template> |