Add missing semicolon

This commit is contained in:
Nadav Tasher 2024-11-16 23:35:39 +02:00
parent 0b2cdc4d56
commit d0024d397a

View file

@ -226,7 +226,7 @@ Mousetrap.bind('n', evt => {
const card = ReactiveCache.getCard(cardId); const card = ReactiveCache.getCard(cardId);
// Find the button and click it // Find the button and click it
$(`#js-list-${card.listId} .list-body .minicards .open-minicard-composer`).click() $(`#js-list-${card.listId} .list-body .minicards .open-minicard-composer`).click();
// We should prevent scrolling in card when spacebar is clicked // We should prevent scrolling in card when spacebar is clicked
// This should do it according to Mousetrap docs, but it doesn't // This should do it according to Mousetrap docs, but it doesn't