From 4dd701c2ddded21b223f0c3c45efc8aef37689e5 Mon Sep 17 00:00:00 2001 From: Jermolene Date: Wed, 20 Apr 2016 11:57:38 +0100 Subject: [PATCH] Fix problem with missing link logic See https://github.com/Jermolene/TiddlyWiki5/commit/7908e10488cc4280dd8e4f40 5bcb09f2fb6d3524#commitcomment-17174321 --- core/modules/widgets/link.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/modules/widgets/link.js b/core/modules/widgets/link.js index 716e032c3..b0deb4e51 100755 --- a/core/modules/widgets/link.js +++ b/core/modules/widgets/link.js @@ -37,7 +37,7 @@ LinkWidget.prototype.render = function(parent,nextSibling) { // Get the value of the tv-wikilinks configuration macro var wikiLinksMacro = this.getVariable("tv-wikilinks"), useWikiLinks = wikiLinksMacro ? (wikiLinksMacro.trim() !== "no") : true, - missingLinksEnabled = !(this.hideMissingLinks && this.isMissing); + missingLinksEnabled = !(this.hideMissingLinks && this.isMissing && !this.isShadow); // Render the link if required if(useWikiLinks && missingLinksEnabled) { this.renderLink(parent,nextSibling);