Skip to content

Commit

Permalink
🐛 Fixed checkbox clicks not working in chrome
Browse files Browse the repository at this point in the history
  • Loading branch information
MiloradFilipovic committed Jun 3, 2024
1 parent 6589486 commit 1e05b9a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/design-system/src/components/N8nSticky/Sticky.vue
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
ref="markdownContainer"
:class="$style.wrapper"
@dblclick.stop="onDoubleClick"
@mousedown.stop
>
<N8nMarkdown
theme="sticky"
Expand Down Expand Up @@ -265,7 +266,7 @@ const onCheckboxChange = async (checkbox: HTMLInputElement, position: number) =>
cursor: pointer;
}
input[type='checkbox'] + label {
input[type='checkbox'], input[type='checkbox'] + label {

Check failure on line 269 in packages/design-system/src/components/N8nSticky/Sticky.vue

View workflow job for this annotation

GitHub Actions / Lint changes

Replace `·` with `⏎`
cursor: pointer;
}
Expand Down

0 comments on commit 1e05b9a

Please sign in to comment.