diff --git a/ui/app/templates/allocations/allocation/index.hbs b/ui/app/templates/allocations/allocation/index.hbs
index d114f3334001..96cb194b5dc8 100644
--- a/ui/app/templates/allocations/allocation/index.hbs
+++ b/ui/app/templates/allocations/allocation/index.hbs
@@ -56,7 +56,7 @@
No message
{{/if}}
-
{{moment-format row.model.events.lastObject.time "MM/DD/YY HH:mm:ss [UTC]"}} |
+ {{moment-format row.model.events.lastObject.time "MM/DD/YY HH:mm:ss"}} |
{{#each row.model.resources.networks.firstObject.reservedPorts as |port|}}
diff --git a/ui/app/templates/components/job-version.hbs b/ui/app/templates/components/job-version.hbs
index d82bea583001..6fc55a308a6f 100644
--- a/ui/app/templates/components/job-version.hbs
+++ b/ui/app/templates/components/job-version.hbs
@@ -6,7 +6,7 @@
Submitted
- {{moment-format version.submitTime "MM/DD/YY HH:mm:ss [UTC]"}}
+ {{moment-format version.submitTime "MM/DD/YY HH:mm:ss"}}
{{#if version.diff}}
diff --git a/ui/tests/acceptance/allocation-detail-test.js b/ui/tests/acceptance/allocation-detail-test.js
index 1f0260b6952f..cd31e6c00bd3 100644
--- a/ui/tests/acceptance/allocation-detail-test.js
+++ b/ui/tests/acceptance/allocation-detail-test.js
@@ -106,7 +106,7 @@ test('each task row should list high-level information for the task', function(a
.find('td:eq(3)')
.text()
.trim(),
- moment(event.time / 1000000).format('MM/DD/YY HH:mm:ss [UTC]'),
+ moment(event.time / 1000000).format('MM/DD/YY HH:mm:ss'),
'Event Time'
);
diff --git a/ui/tests/acceptance/job-versions-test.js b/ui/tests/acceptance/job-versions-test.js
index 578eb28bf111..9c63240a4273 100644
--- a/ui/tests/acceptance/job-versions-test.js
+++ b/ui/tests/acceptance/job-versions-test.js
@@ -40,7 +40,7 @@ test('each version mentions the version number, the stability, and the submitted
);
assert.equal(
versionRow.find('.version-submit-date .submit-date').text(),
- moment(version.submitTime / 1000000).format('MM/DD/YY HH:mm:ss [UTC]'),
+ moment(version.submitTime / 1000000).format('MM/DD/YY HH:mm:ss'),
'Submit time'
);
});
|