Fix selector

This commit is contained in:
Liam 2024-06-10 08:08:46 -04:00
parent cb4a651d18
commit 922f2db583

View file

@ -36,7 +36,7 @@ function tagInputButtons(event: MouseEvent) {
for (const [ name, action ] of Object.entries(actions)) {
if (target && target.matches(`#tagsinput-${name}`)) {
action($<HTMLTextAreaElement>('image_tag_input'));
action($<HTMLTextAreaElement>('#image_tag_input'));
}
}
}