Skip to content

Commit

Permalink
발행 버튼 누를 때 저장되도록 임시조치 (#2432)
Browse files Browse the repository at this point in the history
이걸로 발행하니까 글 날라가는 문제를 어느정도 해결할 수 있을 거라 기대해요
  • Loading branch information
robin-maki committed Jun 24, 2024
1 parent 4c11148 commit 9afb004
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion apps/website/src/routes/editor/[permalink]/WebHeader.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,10 @@
style={css.raw({ width: '68px' })}
aria-pressed={publishMenuOpen}
size="sm"
on:click={() => (publishMenuOpen = true)}
on:click={() => {
publishMenuOpen = true;
forceSynchronize();
}}
>
발행
</Button>
Expand Down

0 comments on commit 9afb004

Please sign in to comment.