feat(frontend/admin/ads): 広告のIDを確認できるように (MisskeyIO#921)

This commit is contained in:
まっちゃてぃー。 2025-02-01 22:49:40 +09:00 committed by GitHub
parent 020c4f1716
commit 43e5b8d5f8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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>