15bac1e401
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
implements part of #178, other parts will come later Co-authored-by: Sol Fisher Romanoff <sol@solfisher.com> Reviewed-on: AkkomaGang/pleroma-fe#186 Co-authored-by: sfr <sol@solfisher.com> Co-committed-by: sfr <sol@solfisher.com>
20 lines
448 B
Vue
20 lines
448 B
Vue
<template>
|
|
<tab-switcher
|
|
ref="tabSwitcher"
|
|
class="mod_tab-switcher"
|
|
:side-tab-bar="true"
|
|
:scrollable-tabs="true"
|
|
:body-scroll-lock="bodyLock"
|
|
>
|
|
<div
|
|
:label="$t('moderation.reports.reports')"
|
|
icon="flag"
|
|
data-tab-name="reports"
|
|
>
|
|
<ReportsTab />
|
|
</div>
|
|
</tab-switcher>
|
|
</template>
|
|
|
|
<script src="./mod_modal_content.js"></script>
|
|
<style src="./mod_modal_content.scss" lang="scss"></style>
|