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, {
|
||||
class: "a", // advertiseの意(ブロッカー対策)
|
||||
key: item.id + ":ad",
|
||||
prefer: ["horizontal", "horizontal-big"],
|
||||
prefer: ["inline", "inline-big"],
|
||||
}),
|
||||
el,
|
||||
];
|
||||
|
|
|
@ -111,7 +111,7 @@
|
|||
/>
|
||||
</div>
|
||||
</div>
|
||||
<MkAd :prefer="['horizontal', 'horizontal-big']" />
|
||||
<MkAd :prefer="['inline', 'inline-big']" />
|
||||
<MkContainer
|
||||
:max-height="300"
|
||||
:foldable="true"
|
||||
|
|
|
@ -168,7 +168,7 @@
|
|||
</template>
|
||||
</div> -->
|
||||
</div>
|
||||
<MkAd :prefer="['horizontal', 'horizontal-big']" />
|
||||
<MkAd :prefer="['inline', 'inline-big']" />
|
||||
<MkContainer
|
||||
:max-height="300"
|
||||
:foldable="true"
|
||||
|
|
Loading…
Reference in New Issue