Do not show UTC offset in select
This commit is contained in:
@@ -376,7 +376,7 @@ var timezones = ubuntuTimezones.map(function (t) {
|
||||
|
||||
return {
|
||||
id: t,
|
||||
display: `(UTC${detail.offset}) ${t}`
|
||||
display: `${t} (UTC${detail.offset})`
|
||||
}
|
||||
}).filter(function (t) { return !!t; });
|
||||
|
||||
|
||||
@@ -275,7 +275,7 @@
|
||||
|
||||
<div class="row">
|
||||
<div class="col-md-12">
|
||||
<multiselect class="pull-right" ng-model="timeZone.timeZone" ng-disabled="timeZone.busy" options="tz.display for tz in timeZone.availableTimeZones" data-multiple="false" filter-after-rows="5" scroll-after-rows="10"></multiselect>
|
||||
<multiselect class="pull-right" ng-model="timeZone.timeZone" ng-disabled="timeZone.busy" options="tz.id for tz in timeZone.availableTimeZones" data-multiple="false" filter-after-rows="5" scroll-after-rows="10"></multiselect>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user