diff --git a/src/components/IOC/IOCCommandTable.js b/src/components/IOC/IOCCommandTable.js
index 8f48abd4d111c48381afad4570efb2fdc7ff5488..101b09a456ff1913668aece9c222e13bb9682af6 100644
--- a/src/components/IOC/IOCCommandTable.js
+++ b/src/components/IOC/IOCCommandTable.js
@@ -17,10 +17,10 @@ const dateTemplate = (rowData) => {
 }
 
 const columns = [
-  { id: "status", label: 'Status', width: '10%' },
+  { id: "status", label: 'Status', width: '10%', textAlign: "center" },
   { id: "type", label: 'Command', width: '10%' },
   { id: "user", label: 'User', width: '40%', sortable: false },
-  { id: 'start', label: 'Timestamp', width: '40%', body: dateTemplate, sortable: false }
+  { id: 'start', label: 'Timestamp', width: '40%', body: dateTemplate, sortable: false, textAlign: "center" }
 ]
 
 function createTableRow(command) {
diff --git a/src/components/Job/JobTable.js b/src/components/Job/JobTable.js
index c2de907ed627a3247062aad38db01ceb17def1da..c2788f6999fd332d88a7d3785d75733f50c1b4cd 100644
--- a/src/components/Job/JobTable.js
+++ b/src/components/Job/JobTable.js
@@ -19,14 +19,14 @@ const jobLogColumns = [
   { id: 'network', label: 'Network', width: '10ch', sortable: false },
   { id: 'user', label: 'User', width: '10ch', sortable: false },
   { id: 'version', label: 'Reference', width: '10ch', sortable: false },
-  { id: 'start', label: 'Time', width: '15ch', sortable: false }
+  { id: 'start', label: 'Time', width: '15ch', sortable: false, textAlign: "right" }
 ];
 
 const iocServiceControlColumns = [
   { id: 'status', label: 'Status', width: '4ch', textAlign: "center"},
   { id: 'type', label: 'Command', width: '4ch', textAlign: "center"},
   { id: 'user', label: 'User', width: '10ch' },
-  { id: 'start', label: 'Time', width: '15ch' }
+  { id: 'start', label: 'Time', width: '15ch', textAlign: "right" }
 ];
 
 function createGitVersionField(version, shortVersion) {
diff --git a/src/components/deployments/DeploymentsTable.js b/src/components/deployments/DeploymentsTable.js
index 030b7316298a02593a8c6634741f01a87c43f46a..bddf6d0c03f63b9121db74ccb51fb1d4052231a5 100644
--- a/src/components/deployments/DeploymentsTable.js
+++ b/src/components/deployments/DeploymentsTable.js
@@ -19,7 +19,7 @@ const columns = [
   { id: 'network', label: 'Network', width: '10ch', sortable: false },
   { id: 'user', label: 'User', width: '10ch', sortable: true },
   { id: 'version', label: 'Reference', width: '15ch', sortable: true },
-  { id: 'start', label: 'Time', width: '10ch', sortable: true }
+  { id: 'start', label: 'Time', width: '10ch', sortable: true, textAlign: "right" }
 ];
 
 function createGitVersionField(version, shortVersion) {