mirror of
https://github.com/paricafe/misskey.git
synced 2025-03-20 11:19:22 -05:00
parent
9efa5dce22
commit
1ecc57f3ae
1 changed files with 2 additions and 0 deletions
|
@ -296,6 +296,7 @@ const muted = ref(checkMute(appearNote.value, $i?.mutedWords));
|
||||||
const hardMuted = ref(props.withHardMute && checkMute(appearNote.value, $i?.hardMutedWords, true));
|
const hardMuted = ref(props.withHardMute && checkMute(appearNote.value, $i?.hardMutedWords, true));
|
||||||
const translation = ref<Misskey.entities.NotesTranslateResponse | null>(null);
|
const translation = ref<Misskey.entities.NotesTranslateResponse | null>(null);
|
||||||
const translating = ref(false);
|
const translating = ref(false);
|
||||||
|
const showTicker = (defaultStore.state.instanceTicker === 'always') || (defaultStore.state.instanceTicker === 'remote' && appearNote.value.user.instance);
|
||||||
const canRenote = computed(() => ['public', 'home'].includes(appearNote.value.visibility) || (appearNote.value.visibility === 'followers' && appearNote.value.userId === $i?.id));
|
const canRenote = computed(() => ['public', 'home'].includes(appearNote.value.visibility) || (appearNote.value.visibility === 'followers' && appearNote.value.userId === $i?.id));
|
||||||
const renoteCollapsed = ref(
|
const renoteCollapsed = ref(
|
||||||
defaultStore.state.collapseRenotes && isRenote && (
|
defaultStore.state.collapseRenotes && isRenote && (
|
||||||
|
@ -308,6 +309,7 @@ const defaultLike = computed(() => defaultStore.state.like ?? '❤️');
|
||||||
|
|
||||||
const inReplyToCollapsed = ref(defaultStore.state.collapseNotesRepliedTo);
|
const inReplyToCollapsed = ref(defaultStore.state.collapseNotesRepliedTo);
|
||||||
const disableReactionsViewer = ref(defaultStore.reactiveState.disableReactionsViewer);
|
const disableReactionsViewer = ref(defaultStore.reactiveState.disableReactionsViewer);
|
||||||
|
const collapsedUnexpectedLangs = ref(defaultStore.reactiveState.collapsedUnexpectedLangs);
|
||||||
|
|
||||||
const pleaseLoginContext = computed<OpenOnRemoteOptions>(() => ({
|
const pleaseLoginContext = computed<OpenOnRemoteOptions>(() => ({
|
||||||
type: 'lookup',
|
type: 'lookup',
|
||||||
|
|
Loading…
Add table
Reference in a new issue