Skip to content
Snippets Groups Projects
Commit fb7bb95a authored by Nicolas Lempereur's avatar Nicolas Lempereur
Browse files

[FIX] web_calendar: operator prirority typo from e0297244

parent 33755f18
No related branches found
No related tags found
No related merge requests found
......@@ -630,7 +630,7 @@ var CalendarView = View.extend({
r.className = 'o_calendar_color_'+ this.get_color(color_key);
}
} else { // if form all, get color -1
r.className = 'o_calendar_color_'+ self.all_filters[-1] ? self.all_filters[-1].color : 1;
r.className = 'o_calendar_color_'+ (self.all_filters[-1] ? self.all_filters[-1].color : 1);
}
return r;
},
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment