Fix show more button being shown when more than 4 images inside CW
This commit is contained in:
parent
a15e5753b0
commit
49142df177
|
@ -209,13 +209,19 @@ const emit = defineEmits<{
|
|||
|
||||
const cwButton = ref<HTMLElement>();
|
||||
const showMoreButton = ref<HTMLElement>();
|
||||
const isLong =
|
||||
!props.detailedView &&
|
||||
((props.note.cw == null &&
|
||||
props.note.text != null &&
|
||||
(props.note.text.split("\n").length > 10 ||
|
||||
props.note.text.length > 800)) ||
|
||||
props.note.files.length > 4);
|
||||
|
||||
const isLong = !props.detailedView && props.note.cw == null &&
|
||||
(
|
||||
(
|
||||
props.note.text != null &&
|
||||
(
|
||||
props.note.text.split("\n").length > 10 ||
|
||||
props.note.text.length > 800
|
||||
)
|
||||
) ||
|
||||
props.note.files.length > 4
|
||||
)
|
||||
;
|
||||
|
||||
const collapsed = $ref(props.note.cw == null && isLong);
|
||||
|
||||
|
|
Loading…
Reference in New Issue