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