Made thread note refs deep again
ci/woodpecker/push/ociImagePush Pipeline is running
Details
ci/woodpecker/push/ociImagePush Pipeline is running
Details
This commit is contained in:
parent
8d9415b3ab
commit
7c2909bceb
|
@ -179,7 +179,6 @@ import {
|
|||
magReactionToLegacy,
|
||||
resolveNote,
|
||||
} from "@/scripts-mag/mag-util";
|
||||
import { shallowRef } from "@vue/runtime-core";
|
||||
|
||||
const props = defineProps<{
|
||||
note: packed.PackNoteMaybeFull;
|
||||
|
@ -216,10 +215,10 @@ const muted = ref(
|
|||
);
|
||||
const translation = ref(null);
|
||||
const translating = ref(false);
|
||||
let conversation = shallowRef<packed.PackNoteMaybeFull[]>([]);
|
||||
const replies = shallowRef<packed.PackNoteMaybeFull[]>([]);
|
||||
let directReplies = shallowRef<packed.PackNoteMaybeFull[] | null>(null);
|
||||
let directQuotes = shallowRef<packed.PackNoteMaybeFull[] | null>(null);
|
||||
let conversation = ref<packed.PackNoteMaybeFull[]>([]);
|
||||
const replies = ref<packed.PackNoteMaybeFull[]>([]);
|
||||
let directReplies = ref<packed.PackNoteMaybeFull[] | null>(null);
|
||||
let directQuotes = ref<packed.PackNoteMaybeFull[] | null>(null);
|
||||
let clips = ref<misskey.entities.Clip[]>([]);
|
||||
let renotes = ref<misskey.entities.Note[] | null>();
|
||||
let isScrolling;
|
||||
|
|
Loading…
Reference in New Issue