typo fixed
This commit is contained in:
parent
1ac16ed4c2
commit
4704a884a1
4 changed files with 3 additions and 3 deletions
|
|
@ -171,7 +171,7 @@ taTranslationStore.saveTranslation()
|
|||
| `js/mzta-summarystore.js` | Summary-specific storage wrapper (`taSummaryStore` class) with caching, truncation, and processing-state tracking |
|
||||
| `js/mzta-translationstore.js` | Translation-specific storage wrapper (`taTranslationStore` class) with caching, truncation, and processing-state tracking |
|
||||
| `js/mzta-working-status.js` | Visual status indicator during AI processing |
|
||||
| `js/mzta-addatags-exclusion-list.js` | Tag exclusion list management |
|
||||
| `js/mzta-addtags-exclusion-list.js` | Tag exclusion list management |
|
||||
| `js/mzta-placeholders-autocomplete.js` | Autocomplete for placeholders in prompt editor |
|
||||
|
||||
## API Modules (`js/api/`)
|
||||
|
|
|
|||
|
|
@ -580,7 +580,7 @@ switch (message.command) {
|
|||
case "getTags":
|
||||
// console.log(">>>>>>>>>>>>>> getTags: " + JSON.stringify(message.tags));
|
||||
|
||||
// ===== These methods are also defined in the file /js/mzta-addatags-exclusion-list.js
|
||||
// ===== These methods are also defined in the file /js/mzta-addtags-exclusion-list.js
|
||||
async function addTags_getExclusionList() {
|
||||
let prefs_excluded_tags = await browser.storage.local.get({add_tags_exclusions: []});
|
||||
// console.log(">>>>>>>>>>>>>>> addTags_getExclusionList prefs_excluded_tags: " + JSON.stringify(prefs_excluded_tags));
|
||||
|
|
|
|||
|
|
@ -30,7 +30,7 @@ import { textareaAutocomplete } from "../../js/mzta-placeholders-autocomplete.js
|
|||
import {
|
||||
addTags_getExclusionList,
|
||||
addTags_setExclusionList
|
||||
} from "../../js/mzta-addatags-exclusion-list.js";
|
||||
} from "../../js/mzta-addtags-exclusion-list.js";
|
||||
import {
|
||||
getAccountsList,
|
||||
normalizeStringList,
|
||||
|
|
|
|||
Loading…
Reference in a new issue