Fix: Inline Ads bug (#9922)
This PR fixes this issue: https://codeberg.org/calckey/calckey/issues/9747 Co-authored-by: ThatOneCalculator <kainoa@t1c.dev> Co-authored-by: yawhn <kordaris@gmail.com> Co-authored-by: Otto Richter <otto@codeberg.org> Reviewed-on: https://codeberg.org/calckey/calckey/pulls/9922 Co-authored-by: yawhn <yawhn@noreply.codeberg.org> Co-committed-by: yawhn <yawhn@noreply.codeberg.org>
This commit is contained in:
parent
1bab53fed2
commit
e7fe452f22
|
@ -95,7 +95,7 @@ export default defineComponent({
|
||||||
h(MkAd, {
|
h(MkAd, {
|
||||||
class: "a", // advertiseの意(ブロッカー対策)
|
class: "a", // advertiseの意(ブロッカー対策)
|
||||||
key: item.id + ":ad",
|
key: item.id + ":ad",
|
||||||
prefer: ["horizontal", "horizontal-big"],
|
prefer: ["inline", "inline-big"],
|
||||||
}),
|
}),
|
||||||
el,
|
el,
|
||||||
];
|
];
|
||||||
|
|
|
@ -111,7 +111,7 @@
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<MkAd :prefer="['horizontal', 'horizontal-big']" />
|
<MkAd :prefer="['inline', 'inline-big']" />
|
||||||
<MkContainer
|
<MkContainer
|
||||||
:max-height="300"
|
:max-height="300"
|
||||||
:foldable="true"
|
:foldable="true"
|
||||||
|
|
|
@ -168,7 +168,7 @@
|
||||||
</template>
|
</template>
|
||||||
</div> -->
|
</div> -->
|
||||||
</div>
|
</div>
|
||||||
<MkAd :prefer="['horizontal', 'horizontal-big']" />
|
<MkAd :prefer="['inline', 'inline-big']" />
|
||||||
<MkContainer
|
<MkContainer
|
||||||
:max-height="300"
|
:max-height="300"
|
||||||
:foldable="true"
|
:foldable="true"
|
||||||
|
|
Loading…
Reference in New Issue