diff --git a/core/modules/widgets/tiddler.js b/core/modules/widgets/tiddler.js index a8b10e85f..1300bd991 100755 --- a/core/modules/widgets/tiddler.js +++ b/core/modules/widgets/tiddler.js @@ -57,7 +57,7 @@ TiddlerWidget.prototype.getTagClasses = function() { if(tiddler) { var tags = []; $tw.utils.each(tiddler.fields.tags,function(tag) { - tags.push("tw-tag-" + encodeURIComponent(tag)); + tags.push("tw-tagged-" + encodeURIComponent(tag)); }); return tags.join(" "); } else {