Skip to content

Commit

Permalink
Fix UTC offset bug when positive
Browse files Browse the repository at this point in the history
  • Loading branch information
alexbrazier committed Apr 2, 2017
1 parent 190a743 commit 16b84b2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/rocketchat-ui-flextab/client/tabs/membersList.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ Template.membersList.helpers({
if (utcOffset === userUtcOffset) {
utcOffset = '';
} else if (utcOffset > 0) {
utcOffset = `+${ utcOffset }`;
utcOffset = `(UTC +${ utcOffset })`;
} else {
utcOffset = `(UTC ${ utcOffset })`;
}
Expand Down

0 comments on commit 16b84b2

Please sign in to comment.