Skip to content

Commit

Permalink
🎨
Browse files Browse the repository at this point in the history
  • Loading branch information
syuilo committed Sep 22, 2024
1 parent 7640866 commit 3ad5c75
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion packages/frontend/src/pages/admin/system-webhook.item.vue
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,11 @@ SPDX-License-Identifier: AGPL-3.0-only
<span v-else>-</span>
</template>

<div>
<div class="_gaps">
<MkKeyValue>
<template #key>latestStatus</template>
<template #value>{{ entity.latestStatus ?? '-' }}</template>
</MkKeyValue>
<div class="_buttons">
<MkButton @click="onEditClick">
<i class="ti ti-settings"></i> {{ i18n.ts.edit }}
Expand All @@ -40,6 +44,7 @@ import { toRefs } from 'vue';
import MkFolder from '@/components/MkFolder.vue';
import { i18n } from '@/i18n.js';
import MkButton from '@/components/MkButton.vue';
import MkKeyValue from '@/components/MkKeyValue.vue';

const emit = defineEmits<{
(ev: 'edit', value: entities.SystemWebhook): void;
Expand Down

0 comments on commit 3ad5c75

Please sign in to comment.