1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-11-27 03:57:21 +00:00

Allow attribute override in innerwiki widget (#7176)

This commit is contained in:
btheado 2023-01-13 04:48:51 -06:00 committed by GitHub
parent 6e10918a28
commit b5134951e5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -295,7 +295,7 @@ InnerWikiWidget.prototype.readTiddlerDataWidget = function(dataWidget) {
if(tiddler) { if(tiddler) {
fields = tiddler.getFieldStrings(); fields = tiddler.getFieldStrings();
} }
results.push($tw.utils.extend({},item,fields)); results.push($tw.utils.extend({},fields,item));
}) })
return results; return results;
} else { } else {