Skip to content

Commit

Permalink
Merge pull request #6562 from alexbrazier/bugfix/utc-offset
Browse files Browse the repository at this point in the history
[FIX] UTC offset missing UTC text when positive
  • Loading branch information
engelgabriel authored Apr 3, 2017
2 parents 4e1c7a0 + 16b84b2 commit b604ce4
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 b604ce4

Please sign in to comment.