diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2021-05-05 19:05:50 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2021-05-05 19:05:50 +0900 |
| commit | 8accb78fa97becfd96173fba6eb69073aa643b25 (patch) | |
| tree | 01c7aef9bddcf6db29c977fe94b4238a221714b7 /src/client/pages | |
| parent | Merge branch 'develop' (diff) | |
| parent | 12.80.3 (diff) | |
| download | misskey-8accb78fa97becfd96173fba6eb69073aa643b25.tar.gz misskey-8accb78fa97becfd96173fba6eb69073aa643b25.tar.bz2 misskey-8accb78fa97becfd96173fba6eb69073aa643b25.zip | |
Merge branch 'develop'
Diffstat (limited to 'src/client/pages')
| -rw-r--r-- | src/client/pages/gallery/post.vue | 2 | ||||
| -rw-r--r-- | src/client/pages/instance/ads.vue | 1 | ||||
| -rw-r--r-- | src/client/pages/page.vue | 2 |
3 files changed, 3 insertions, 2 deletions
diff --git a/src/client/pages/gallery/post.vue b/src/client/pages/gallery/post.vue index 50f81376ec..dbac003e38 100644 --- a/src/client/pages/gallery/post.vue +++ b/src/client/pages/gallery/post.vue @@ -33,7 +33,7 @@ <MkFollowButton v-if="!$i || $i.id != post.user.id" :user="post.user" :inline="true" :transparent="false" :full="true" large class="koudoku"/> </div> </div> - <MkAd prefer="horizontal"/> + <MkAd :prefer="['horizontal', 'horizontal-big']"/> <MkContainer :max-height="300" :foldable="true" class="other"> <template #header><i class="fas fa-clock"></i> {{ $ts.recentPosts }}</template> <MkPagination :pagination="otherPostsPagination" #default="{items}"> diff --git a/src/client/pages/instance/ads.vue b/src/client/pages/instance/ads.vue index ee7114f91c..20747d6f9c 100644 --- a/src/client/pages/instance/ads.vue +++ b/src/client/pages/instance/ads.vue @@ -13,6 +13,7 @@ <div style="margin: 32px 0;"> <MkRadio v-model="ad.place" value="square">square</MkRadio> <MkRadio v-model="ad.place" value="horizontal">horizontal</MkRadio> + <MkRadio v-model="ad.place" value="horizontal-big">horizontal-big</MkRadio> </div> <div style="margin: 32px 0;"> {{ $ts.priority }} diff --git a/src/client/pages/page.vue b/src/client/pages/page.vue index 4e237c2186..47a458df9c 100644 --- a/src/client/pages/page.vue +++ b/src/client/pages/page.vue @@ -45,7 +45,7 @@ <div><i class="far fa-clock"></i> {{ $ts.createdAt }}: <MkTime :time="page.createdAt" mode="detail"/></div> <div v-if="page.createdAt != page.updatedAt"><i class="far fa-clock"></i> {{ $ts.updatedAt }}: <MkTime :time="page.updatedAt" mode="detail"/></div> </div> - <MkAd prefer="horizontal"/> + <MkAd :prefer="['horizontal', 'horizontal-big']"/> <MkContainer :max-height="300" :foldable="true" class="other"> <template #header><i class="fas fa-clock"></i> {{ $ts.recentPosts }}</template> <MkPagination :pagination="otherPostsPagination" #default="{items}"> |