This commit is contained in:
parent
b160c9428a
commit
27493babd9
|
@ -13,6 +13,7 @@ SPDX-License-Identifier: AGPL-3.0-only
|
|||
>
|
||||
<video ref="videoEl" :class="$style.video" autoplay muted playsinline></video>
|
||||
<div
|
||||
class="_spacer"
|
||||
:style="{
|
||||
'--MI-stickyTop': 'calc(var(--MI-stickyTop, 0px) + var(--MI-QrReadVideoHeight, 0px))',
|
||||
}"
|
||||
|
@ -21,10 +22,10 @@ SPDX-License-Identifier: AGPL-3.0-only
|
|||
<option value="users">{{ i18n.ts.users }} ({{ users.length }})</option>
|
||||
<option value="notes">{{ i18n.ts.notes }} ({{ notes.length }})</option>
|
||||
</MkTab>
|
||||
<div v-if="tab === 'users'" :class="['_spacer', '_gaps', $style.users]" style="padding-bottom: var(--MI-margin);">
|
||||
<div v-if="tab === 'users'" :class="['_gaps', $style.users]" style="padding-bottom: var(--MI-margin);">
|
||||
<MkUserInfo v-for="user in users" :key="user.id" :user="user"/>
|
||||
</div>
|
||||
<div v-else-if="tab === 'notes'" class="_spacer _gaps" style="padding-bottom: var(--MI-margin);">
|
||||
<div v-else-if="tab === 'notes'" class="_gaps" style="padding-bottom: var(--MI-margin);">
|
||||
<MkNote v-for="note in notes" :key="note.id" :note="note"/>
|
||||
</div>
|
||||
</div>
|
||||
|
|
Loading…
Reference in New Issue