fix: [planning-design] 이미지 블록 업로드를 더블클릭으로 변경
- 단일 클릭 시 드래그 이동 중 파일 창이 뜨는 문제 해결 - @click.stop → @dblclick.stop 변경
This commit is contained in:
@@ -1927,8 +1927,8 @@
|
||||
</div>
|
||||
</template>
|
||||
<template x-if="!blk.src">
|
||||
<div class="sb-blk-image-placeholder" @click.stop="sbBlockImageTarget = blk; $refs.sbBlockImageInput.click();">
|
||||
클릭하여 이미지 업로드
|
||||
<div class="sb-blk-image-placeholder" @dblclick.stop="sbBlockImageTarget = blk; $refs.sbBlockImageInput.click();">
|
||||
더블클릭하여 이미지 업로드
|
||||
</div>
|
||||
</template>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user