Revert "lint"

This reverts commit f20ae34400.
This commit is contained in:
Henry Jameson 2022-03-29 11:57:54 +03:00
parent b132581b3a
commit d9d4d8954e
14 changed files with 19 additions and 34 deletions

View File

@ -11,7 +11,7 @@
</label>
<Checkbox
v-if="typeof fallback !== 'undefined' && showOptionalTickbox"
:model-value="present"
:modelValue="present"
:disabled="disabled"
class="opt"
@update:modelValue="$emit('update:modelValue', typeof modelValue === 'undefined' ? fallback : undefined)"

View File

@ -112,10 +112,7 @@
</span>
<span v-if="notification.type === 'pleroma:emoji_reaction'">
<small>
<i18n-t
scope="global"
keypath="notifications.reacted_with"
>
<i18n-t scope="global" keypath="notifications.reacted_with">
<span class="emoji-reaction-emoji">{{ notification.emoji }}</span>
</i18n-t>
</small>

View File

@ -11,7 +11,7 @@
</label>
<Checkbox
v-if="typeof fallback !== 'undefined'"
:model-value="present"
:modelValue="present"
:disabled="disabled"
class="opt"
@update:modelValue="$emit('update:modelValue', !present ? fallback : undefined)"

View File

@ -71,10 +71,7 @@
{{ $tc("polls.votes_count", poll.votes_count, { count: poll.votes_count }) }}&nbsp;·&nbsp;
</template>
</div>
<i18n-t
scope="global"
:keypath="expired ? 'polls.expired' : 'polls.expires_in'"
>
<i18n-t scope="global" :keypath="expired ? 'polls.expired' : 'polls.expires_in'">
<Timeago
:time="expiresAt"
:auto-update="60"

View File

@ -6,7 +6,7 @@
>
<div class="selectable-list-checkbox-wrapper">
<Checkbox
:model-value="allSelected"
:modelValue="allSelected"
:indeterminate="someSelected"
@change="toggleAll"
>
@ -31,7 +31,7 @@
>
<div class="selectable-list-checkbox-wrapper">
<Checkbox
:model-value="isSelected(item)"
:modelValue="isSelected(item)"
@change="checked => toggle(checked, item)"
/>
</div>

View File

@ -4,7 +4,7 @@
class="BooleanSetting"
>
<Checkbox
:model-value="state"
:modelValue="state"
:disabled="disabled"
@update:modelValue="update"
>

View File

@ -6,7 +6,7 @@
<slot />
{{ ' ' }}
<Select
:model-value="state"
:modelValue="state"
:disabled="disabled"
@update:modelValue="update"
>

View File

@ -110,15 +110,12 @@
</template>
</Popover>
<Checkbox
:model-value="!!expertLevel"
@update:modelValue="expertLevel = Number($event)"
>
<Checkbox :modelValue="!!expertLevel" @update:modelValue="expertLevel = Number($event)">
{{ $t("settings.expert_mode") }}
</Checkbox>
<span
id="unscrolled-content"
class="extra-content"
id="unscrolled-content"
/>
</div>
</div>

View File

@ -184,8 +184,8 @@
<button
v-if="!isDefaultBackground"
class="button-unstyled"
:title="$t('settings.reset_profile_background')"
@click="resetBackground"
:title="$t('settings.reset_profile_background')"
>
<FAIcon
class="reset-button"

View File

@ -951,16 +951,14 @@
:fallback="currentShadowFallback"
/>
<div v-if="shadowSelected === 'avatar' || shadowSelected === 'avatarStatus'">
<i18n-t
scope="global"
<i18n-t scope="global"
keypath="settings.style.shadows.filter_hint.always_drop_shadow"
tag="p"
>
<code>filter: drop-shadow()</code>
</i18n-t>
<p>{{ $t('settings.style.shadows.filter_hint.avatar_inset') }}</p>
<i18n-t
scope="global"
<i18n-t scope="global"
keypath="settings.style.shadows.filter_hint.drop_shadow_syntax"
tag="p"
>
@ -968,8 +966,7 @@
<code>spread-radius</code>
<code>inset</code>
</i18n-t>
<i18n-t
scope="global"
<i18n-t scope="global"
keypath="settings.style.shadows.filter_hint.inset_classic"
tag="p"
>

View File

@ -204,8 +204,7 @@
v-model="selected.alpha"
:disabled="!present"
/>
<i18n-t
scope="global"
<i18n-t scope="global"
keypath="settings.style.shadows.hintV3"
tag="p"
>

View File

@ -74,9 +74,8 @@
v-if="currentReplies.length && !threadShowing"
class="thread-tree-replies thread-tree-replies-hidden"
>
<i18n-t
<i18n-t scope="global"
v-if="simple"
scope="global"
tag="button"
keypath="status.thread_follow_with_icon"
class="button-unstyled -link thread-tree-show-replies-button"
@ -93,9 +92,8 @@
</span>
</template>
</i18n-t>
<i18n-t
<i18n-t scope="global"
v-else
scope="global"
tag="button"
keypath="status.thread_show_full_with_icon"
class="button-unstyled -link thread-tree-show-replies-button"

View File

@ -2,7 +2,7 @@
<span
class="Avatar"
:class="{ '-compact': compact }"
>
>
<StillImage
v-if="user"
class="avatar"

View File

@ -53,7 +53,7 @@
:statusoid="item"
/>
<Checkbox
:model-value="isChecked(item.id)"
:modelValue="isChecked(item.id)"
@change="checked => toggleStatus(checked, item.id)"
/>
</div>