fix clicking on inner elements in button

This commit is contained in:
Keith Cirkel 2024-03-01 17:41:34 +00:00
Родитель 2733d07f94
Коммит fe5ae6ef08
Не найден ключ, соответствующий данной подписи
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -313,7 +313,7 @@ function applyFromToolbar(event: Event) {
if (!(target instanceof Element)) return
const mdButton = target.closest('[data-md-button]')
if (!mdButton || mdButton.closest('markdown-toolbar') !== currentTarget) return
const mdButtonStyle = target.getAttribute('data-md-button')
const mdButtonStyle = mdButton.getAttribute('data-md-button')
const style = manualStyles[mdButtonStyle as keyof typeof manualStyles]
if (!style) return
event.preventDefault()