lint and type fixes
This commit is contained in:
parent
54071efaea
commit
6ac37b4d6c
84 changed files with 188 additions and 374 deletions
|
|
@ -155,7 +155,6 @@ const parsed = computed(() => appearNote.value.text ? mfm.parse(appearNote.value
|
|||
const isLong = shouldCollapsed(appearNote.value, []);
|
||||
const collapsed = ref(appearNote.value.cw == null && isLong);
|
||||
const isDeleted = ref(false);
|
||||
|
||||
const mergedCW = computed(() => computeMergedCw(appearNote.value));
|
||||
</script>
|
||||
|
||||
|
|
|
|||
|
|
@ -176,7 +176,6 @@ const isDeleted = ref(false);
|
|||
const parsed = appearNote.value.text ? mfm.parse(appearNote.value.text) : null;
|
||||
const isLong = shouldCollapsed(appearNote.value, []);
|
||||
const collapsed = ref(appearNote.value.cw == null && isLong);
|
||||
|
||||
const mergedCW = computed(() => computeMergedCw(appearNote.value));
|
||||
</script>
|
||||
|
||||
|
|
|
|||
|
|
@ -36,7 +36,6 @@ const props = defineProps<{
|
|||
}>();
|
||||
|
||||
const showContent = ref(false);
|
||||
|
||||
const mergedCW = computed(() => computeMergedCw(props.note));
|
||||
</script>
|
||||
|
||||
|
|
|
|||
|
|
@ -55,7 +55,6 @@ const props = withDefaults(defineProps<{
|
|||
|
||||
const showContent = ref(false);
|
||||
const replies = ref<Misskey.entities.Note[]>([]);
|
||||
|
||||
const mergedCW = computed(() => computeMergedCw(props.note));
|
||||
|
||||
if (props.detail) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue