Fix tags import

2dcdb4d14a6e76f6e1d2df1caa8508b2ecccbe64

Cohee <18619528+Cohee1207@users.noreply.github.com>

1 files changed, +2 -1Ignore whitespace
public/scripts/tags.js+2 -1
@@ -28,6 +28,7 @@ import { debounce_timeout } from './constants.js';
28import { INTERACTABLE_CONTROL_CLASS } from './keyboard.js';28import { INTERACTABLE_CONTROL_CLASS } from './keyboard.js';
29import { commonEnumProviders } from './slash-commands/SlashCommandCommonEnumsProvider.js';29import { commonEnumProviders } from './slash-commands/SlashCommandCommonEnumsProvider.js';
30import { renderTemplateAsync } from './templates.js';30import { renderTemplateAsync } from './templates.js';
31import { t } from './i18n.js';
3132
32export {33export {
33 TAG_FOLDER_TYPES,34 TAG_FOLDER_TYPES,
@@ -1299,7 +1300,7 @@ export function createTagInput(inputSelector, listSelector, tagListOptions = {})
1299async function onViewTagsListClick() {1300async function onViewTagsListClick() {
1300 const html = $(document.createElement('div'));1301 const html = $(document.createElement('div'));
1301 html.attr('id', 'tag_view_list');1302 html.attr('id', 'tag_view_list');
1302 html.append(await renderTemplateAsync('tagManagement', {bogus_folders: power_user.bogus_folders, auto_sort_tags: power_user.auto_sort_tags}));1303 html.append(await renderTemplateAsync('tagManagement', { bogus_folders: power_user.bogus_folders, auto_sort_tags: power_user.auto_sort_tags }));
13031304
1304 const tagContainer = $('<div class="tag_view_list_tags ui-sortable"></div>');1305 const tagContainer = $('<div class="tag_view_list_tags ui-sortable"></div>');
1305 html.append(tagContainer);1306 html.append(tagContainer);