Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Timestamp format millisecs #378

Merged
merged 11 commits into from
May 4, 2020
Prev Previous commit
Next Next commit
Fixed grouping of different time labels in right panel
  • Loading branch information
will-moore committed Apr 21, 2020

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
commit 4d452f6638042020aa30331fcaf986f655fb428a
2 changes: 1 addition & 1 deletion src/js/models/panel_model.js
Original file line number Diff line number Diff line change
@@ -313,7 +313,7 @@
},

get_label_key: function(label) {
var key = label.text + '_' + label.size + '_' + label.color + '_' + label.position;
var key = (label.text || label.time) + '_' + label.size + '_' + label.color + '_' + label.position;
key = _.escape(key);
return key;
},