Skip to content

Commit

Permalink
hotfix: Bug from increasing markdown body
Browse files Browse the repository at this point in the history
  • Loading branch information
samuveth committed Jan 16, 2024
1 parent 8c15888 commit c1bafee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/SpaceProposalContent.vue
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ const truncateMarkdownBody = computed(() => {
const markdownBodyHeight = markdownBody.value?.clientHeight
? markdownBody.value.clientHeight
: 0;
return markdownBodyHeight > 400;
return markdownBodyHeight > 580;
});
</script>

Expand Down

1 comment on commit c1bafee

@vercel
Copy link

@vercel vercel bot commented on c1bafee Jan 16, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.