1
0
Fork 0
mirror of https://github.com/paricafe/misskey.git synced 2025-03-21 18:49:24 -05:00

Extend note content automatically (no manual click)

This commit is contained in:
fly_mc 2024-10-10 01:36:28 +08:00
parent 30cbc6b85e
commit c0b328fd19

View file

@ -612,6 +612,12 @@ function loadConversation() {
conversation.value = res.reverse();
});
}
// Extend note content automatically (no manual click)
onMounted(() => {
loadReplies();
loadConversation();
});
</script>
<style lang="scss" module>