FIX: tag link in breadcrumbs on subfolder installs

This commit is contained in:
Neil Lalonde 2017-02-21 10:41:03 -05:00
parent 068ce19ae2
commit b19dfba497
1 changed files with 1 additions and 1 deletions

View File

@ -8,6 +8,6 @@ export default Ember.Component.extend({
}.property('tagRecord.id'),
href: function() {
return '/tags/' + this.get('tagRecord.id');
return Discourse.getURL('/tags/' + this.get('tagRecord.id'));
}.property('tagRecord.id'),
});