mirror of
https://github.com/Jermolene/TiddlyWiki5.git
synced 2026-01-09 10:41:45 -08:00
Fix test regression caused by #3052
This commit is contained in:
parent
49b3ed4770
commit
f478fa97fc
1 changed files with 3 additions and 1 deletions
|
|
@ -76,7 +76,9 @@ LinkWidget.prototype.renderLink = function(parent,nextSibling) {
|
|||
classes.push("tc-tiddlylink-resolves");
|
||||
}
|
||||
}
|
||||
classes.push(this.linkClasses);
|
||||
if(this.linkClasses) {
|
||||
classes.push(this.linkClasses);
|
||||
}
|
||||
} else if(this.overrideClasses !== "") {
|
||||
classes.push(this.overrideClasses)
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue