Rename easybake status new_synonym -> add_synonym.

master
voussoir 2021-01-05 14:01:13 -08:00
parent 0310ab38b7
commit fec280bf99
2 changed files with 6 additions and 4 deletions

View File

@ -1728,7 +1728,7 @@ class PDBUtilMixin:
if synonym: if synonym:
synonym = tag.add_synonym(synonym) synonym = tag.add_synonym(synonym)
note = ('new_synonym', f'{tag.name}+{synonym}') note = ('add_synonym', f'{tag.name}+{synonym}')
output_notes.append(note) output_notes.append(note)
return output_notes return output_notes

View File

@ -371,12 +371,14 @@ function tag_action_callback(response)
else if ("action" in data) else if ("action" in data)
{ {
const action = data.action; const action = data.action;
const syn_name = data.synonym || tagname;
message_positivity = "message_positive"; message_positivity = "message_positive";
if (action == "new_tag") if (action == "new_tag")
{message_text = `Created tag ${tagname}`;} {message_text = `Created tag ${tagname}`;}
else if (action == "new_synonym") else if (action == "add_synonym")
{message_text = `New synonym ${tagname}`;} {message_text = `New synonym ${syn_name}`;}
else if (action == "existing_tag") else if (action == "existing_tag")
{message_text = `Existing tag ${tagname}`;} {message_text = `Existing tag ${tagname}`;}
@ -391,7 +393,7 @@ function tag_action_callback(response)
{message_text = `Deleted tag ${tagname}`;} {message_text = `Deleted tag ${tagname}`;}
else if (action == "delete_synonym") else if (action == "delete_synonym")
{message_text = `Deleted synonym ${data.synonym}`;} {message_text = `Deleted synonym ${syn_name}`;}
else if (action == "remove_child") else if (action == "remove_child")
{message_text = `Unlinked tags ${tagname}`;} {message_text = `Unlinked tags ${tagname}`;}