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';
2828import { INTERACTABLE_CONTROL_CLASS } from './keyboard.js';
2929import { commonEnumProviders } from './slash-commands/SlashCommandCommonEnumsProvider.js';
3030import { renderTemplateAsync } from './templates.js';
31+import { t } from './i18n.js';
3132
3233export {
3334 TAG_FOLDER_TYPES,
@@ -1299,7 +1300,7 @@ export function createTagInput(inputSelector, listSelector, tagListOptions = {})
12991300async function onViewTagsListClick() {
13001301 const html = $(document.createElement('div'));
13011302 html.attr('id', 'tag_view_list');
13021303 html.append(await renderTemplateAsync('tagManagement', { bogus_folders: power_user.bogus_folders, auto_sort_tags: power_user.auto_sort_tags }));
13031304
13041305 const tagContainer = $('<div class="tag_view_list_tags ui-sortable"></div>');
13051306 html.append(tagContainer);