mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 20:26:35 +08:00
FIX: Make links work with subfolder installs.
This commit is contained in:
parent
4f87f1886b
commit
2095b034ad
|
@ -102,7 +102,7 @@ createWidget('header-icons', {
|
|||
contents() {
|
||||
if (!attrs.flagCount) { return; }
|
||||
return this.attach('link', {
|
||||
href: '/admin/flags/active',
|
||||
href: Discourse.getURL('/admin/flags/active'),
|
||||
title: 'notifications.total_flagged',
|
||||
rawLabel: attrs.flagCount,
|
||||
className: 'badge-notification flagged-posts'
|
||||
|
@ -116,7 +116,7 @@ createWidget('header-icons', {
|
|||
iconId: 'search-button',
|
||||
action: 'toggleSearchMenu',
|
||||
active: attrs.searchVisible,
|
||||
href: '/search'
|
||||
href: Discourse.getURL('/search')
|
||||
});
|
||||
|
||||
const icons = [search, hamburger];
|
||||
|
|
Loading…
Reference in New Issue
Block a user