2
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2025-09-06 10:50:21 +08:00

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

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'),
});