lint
This commit is contained in:
parent
1640bb61e3
commit
9bbf2e70c2
@ -13,8 +13,8 @@
|
|||||||
<label for="announcement-start-time">{{ $t('announcements.start_time_prompt') }}</label>
|
<label for="announcement-start-time">{{ $t('announcements.start_time_prompt') }}</label>
|
||||||
<input
|
<input
|
||||||
id="announcement-start-time"
|
id="announcement-start-time"
|
||||||
class="input"
|
|
||||||
v-model="announcement.startsAt"
|
v-model="announcement.startsAt"
|
||||||
|
class="input"
|
||||||
:type="announcement.allDay ? 'date' : 'datetime-local'"
|
:type="announcement.allDay ? 'date' : 'datetime-local'"
|
||||||
:disabled="disabled"
|
:disabled="disabled"
|
||||||
>
|
>
|
||||||
@ -23,8 +23,8 @@
|
|||||||
<label for="announcement-end-time">{{ $t('announcements.end_time_prompt') }}</label>
|
<label for="announcement-end-time">{{ $t('announcements.end_time_prompt') }}</label>
|
||||||
<input
|
<input
|
||||||
id="announcement-end-time"
|
id="announcement-end-time"
|
||||||
class="input"
|
|
||||||
v-model="announcement.endsAt"
|
v-model="announcement.endsAt"
|
||||||
|
class="input"
|
||||||
:type="announcement.allDay ? 'date' : 'datetime-local'"
|
:type="announcement.allDay ? 'date' : 'datetime-local'"
|
||||||
:disabled="disabled"
|
:disabled="disabled"
|
||||||
>
|
>
|
||||||
|
@ -24,9 +24,9 @@
|
|||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
<input
|
<input
|
||||||
class="input"
|
|
||||||
ref="search"
|
ref="search"
|
||||||
v-model="query"
|
v-model="query"
|
||||||
|
class="input"
|
||||||
placeholder="Search people"
|
placeholder="Search people"
|
||||||
@input="onInput"
|
@input="onInput"
|
||||||
>
|
>
|
||||||
|
@ -12,9 +12,9 @@
|
|||||||
>
|
>
|
||||||
<template #content="{close}">
|
<template #content="{close}">
|
||||||
<div
|
<div
|
||||||
|
:id="`popup-menu-${randomSeed}`"
|
||||||
class="dropdown-menu"
|
class="dropdown-menu"
|
||||||
role="menu"
|
role="menu"
|
||||||
:id="`popup-menu-${randomSeed}`"
|
|
||||||
>
|
>
|
||||||
<button
|
<button
|
||||||
v-if="canMute && !status.thread_muted"
|
v-if="canMute && !status.thread_muted"
|
||||||
|
@ -2,8 +2,8 @@
|
|||||||
<div class="importer">
|
<div class="importer">
|
||||||
<form>
|
<form>
|
||||||
<input
|
<input
|
||||||
class="input"
|
|
||||||
ref="input"
|
ref="input"
|
||||||
|
class="input"
|
||||||
type="file"
|
type="file"
|
||||||
@change="change"
|
@change="change"
|
||||||
>
|
>
|
||||||
|
@ -33,10 +33,10 @@
|
|||||||
<label for="list-edit-title">{{ $t('lists.title') }}</label>
|
<label for="list-edit-title">{{ $t('lists.title') }}</label>
|
||||||
{{ ' ' }}
|
{{ ' ' }}
|
||||||
<input
|
<input
|
||||||
class="input"
|
|
||||||
id="list-edit-title"
|
id="list-edit-title"
|
||||||
ref="title"
|
ref="title"
|
||||||
v-model="titleDraft"
|
v-model="titleDraft"
|
||||||
|
class="input"
|
||||||
>
|
>
|
||||||
<button
|
<button
|
||||||
v-if="id"
|
v-if="id"
|
||||||
|
@ -8,9 +8,9 @@
|
|||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
<input
|
<input
|
||||||
class="input"
|
|
||||||
ref="search"
|
ref="search"
|
||||||
v-model="query"
|
v-model="query"
|
||||||
|
class="input"
|
||||||
:placeholder="$t('lists.search')"
|
:placeholder="$t('lists.search')"
|
||||||
@input="onInput"
|
@input="onInput"
|
||||||
>
|
>
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
v-for="item in pinnedList"
|
v-for="item in pinnedList"
|
||||||
:key="item.name"
|
:key="item.name"
|
||||||
class="button-unstyled pinned-item"
|
class="button-unstyled pinned-item"
|
||||||
activeClass="toggled"
|
active-class="toggled"
|
||||||
:to="getRouteTo(item)"
|
:to="getRouteTo(item)"
|
||||||
:title="item.labelRaw || $t(item.label)"
|
:title="item.labelRaw || $t(item.label)"
|
||||||
>
|
>
|
||||||
|
@ -24,7 +24,10 @@
|
|||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
<div class="setting-list relative">
|
<div class="setting-list relative">
|
||||||
<PanelLoading class="overlay" v-if="working"/>
|
<PanelLoading
|
||||||
|
v-if="working"
|
||||||
|
class="overlay"
|
||||||
|
/>
|
||||||
<h3>{{ $t('admin_dash.frontend.available_frontends') }}</h3>
|
<h3>{{ $t('admin_dash.frontend.available_frontends') }}</h3>
|
||||||
<ul class="cards-list">
|
<ul class="cards-list">
|
||||||
<li
|
<li
|
||||||
|
@ -8,7 +8,10 @@
|
|||||||
</li>
|
</li>
|
||||||
<!-- See https://git.pleroma.social/pleroma/pleroma/-/merge_requests/3963 -->
|
<!-- See https://git.pleroma.social/pleroma/pleroma/-/merge_requests/3963 -->
|
||||||
<li v-if="adminDraft[':pleroma'][':instance'][':favicon'] !== undefined">
|
<li v-if="adminDraft[':pleroma'][':instance'][':favicon'] !== undefined">
|
||||||
<AttachmentSetting compact path=":pleroma.:instance.:favicon" />
|
<AttachmentSetting
|
||||||
|
compact
|
||||||
|
path=":pleroma.:instance.:favicon"
|
||||||
|
/>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<StringSetting path=":pleroma.:instance.:email" />
|
<StringSetting path=":pleroma.:instance.:email" />
|
||||||
@ -20,7 +23,10 @@
|
|||||||
<StringSetting path=":pleroma.:instance.:short_description" />
|
<StringSetting path=":pleroma.:instance.:short_description" />
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<AttachmentSetting compact path=":pleroma.:instance.:instance_thumbnail" />
|
<AttachmentSetting
|
||||||
|
compact
|
||||||
|
path=":pleroma.:instance.:instance_thumbnail"
|
||||||
|
/>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<AttachmentSetting path=":pleroma.:instance.:background_image" />
|
<AttachmentSetting path=":pleroma.:instance.:background_image" />
|
||||||
|
@ -19,7 +19,10 @@
|
|||||||
</div>
|
</div>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<BooleanSetting path="unseenAtTop" expert="1">
|
<BooleanSetting
|
||||||
|
path="unseenAtTop"
|
||||||
|
expert="1"
|
||||||
|
>
|
||||||
{{ $t('settings.notification_setting_unseen_at_top') }}
|
{{ $t('settings.notification_setting_unseen_at_top') }}
|
||||||
</BooleanSetting>
|
</BooleanSetting>
|
||||||
</li>
|
</li>
|
||||||
@ -38,7 +41,9 @@
|
|||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<h3> {{ $t('settings.notification_visibility') }}</h3>
|
<h3> {{ $t('settings.notification_visibility') }}</h3>
|
||||||
<p v-if="expertLevel > 0">{{ $t('settings.notification_setting_filters_chrome_push') }}</p>
|
<p v-if="expertLevel > 0">
|
||||||
|
{{ $t('settings.notification_setting_filters_chrome_push') }}
|
||||||
|
</p>
|
||||||
<ul class="setting-list two-column">
|
<ul class="setting-list two-column">
|
||||||
<li>
|
<li>
|
||||||
<h4> {{ $t('settings.notification_visibility_mentions') }}</h4>
|
<h4> {{ $t('settings.notification_visibility_mentions') }}</h4>
|
||||||
|
@ -193,8 +193,8 @@
|
|||||||
<div>
|
<div>
|
||||||
<input
|
<input
|
||||||
type="file"
|
type="file"
|
||||||
@change="uploadFile('banner', $event)"
|
|
||||||
class="input"
|
class="input"
|
||||||
|
@change="uploadFile('banner', $event)"
|
||||||
>
|
>
|
||||||
</div>
|
</div>
|
||||||
<FAIcon
|
<FAIcon
|
||||||
@ -236,8 +236,8 @@
|
|||||||
<div>
|
<div>
|
||||||
<input
|
<input
|
||||||
type="file"
|
type="file"
|
||||||
@change="uploadFile('background', $event)"
|
|
||||||
class="input"
|
class="input"
|
||||||
|
@change="uploadFile('background', $event)"
|
||||||
>
|
>
|
||||||
</div>
|
</div>
|
||||||
<FAIcon
|
<FAIcon
|
||||||
|
Loading…
Reference in New Issue
Block a user