Skip to content

Commit

Permalink
feat(frontend/admin/ads): 広告のIDを確認できるように (#921)
Browse files Browse the repository at this point in the history
  • Loading branch information
mattyatea authored Feb 1, 2025
1 parent 020c4f1 commit 43e5b8d
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions packages/frontend/src/pages/admin/ads.vue
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,9 @@ SPDX-License-Identifier: AGPL-3.0-only
<div>
<div v-for="ad in ads" class="_panel _gaps_m" :class="$style.ad">
<MkAd v-if="ad.url" :key="ad.id" :specify="ad"/>
<MkInput v-if="ad.id" v-model="ad.id" :readonly="true">
<template #label>ID</template>
</MkInput>
<MkInput v-model="ad.url" type="url">
<template #label>URL</template>
</MkInput>
Expand Down

0 comments on commit 43e5b8d

Please sign in to comment.