Fixed reused implied tags marked as duplicates
This commit is contained in:
parent
924592675c
commit
bc757dd883
1 changed files with 3 additions and 1 deletions
|
@ -202,7 +202,9 @@ App.Controls.TagInput = function($underlyingInput) {
|
||||||
var tag = getExportedTag(tagName);
|
var tag = getExportedTag(tagName);
|
||||||
if (tag) {
|
if (tag) {
|
||||||
_.each(tag.implications, function(impliedTagName) {
|
_.each(tag.implications, function(impliedTagName) {
|
||||||
addTag(impliedTagName, SOURCE_IMPLICATIONS);
|
if (!isTaggedWith(impliedTagName)) {
|
||||||
|
addTag(impliedTagName, SOURCE_IMPLICATIONS);
|
||||||
|
}
|
||||||
});
|
});
|
||||||
if (source !== SOURCE_IMPLICATIONS && source !== SOURCE_SUGGESTIONS) {
|
if (source !== SOURCE_IMPLICATIONS && source !== SOURCE_SUGGESTIONS) {
|
||||||
showOrHideSuggestions(tagName);
|
showOrHideSuggestions(tagName);
|
||||||
|
|
Loading…
Reference in a new issue