mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-27 17:46:05 -05:00
FIX: missed semicolon :fired:
This commit is contained in:
parent
a45e87746e
commit
51b477d1f2
1 changed files with 2 additions and 2 deletions
|
@ -145,10 +145,10 @@ var toolbar = function(selected){
|
|||
var title = g.fullname;
|
||||
if (g.name === "recent") {
|
||||
icon = "star2";
|
||||
title = "Recent"
|
||||
title = "Recent";
|
||||
} else if (g.name === "ungrouped") {
|
||||
icon = g.icons[0];
|
||||
title = "Custom"
|
||||
title = "Custom";
|
||||
}
|
||||
var row = {src: Discourse.Emoji.urlFor(icon), title: title, groupId: i};
|
||||
if(i === selected){
|
||||
|
|
Loading…
Reference in a new issue