From 71bad5a19f8aea358b3f21dde4f69fd53a870184 Mon Sep 17 00:00:00 2001 From: Mo Tarbin Date: Thu, 4 Jul 2024 02:00:20 -0400 Subject: chore: Refactor ThingsHistory component and add styling improvements --- src/views/Things/ThingsHistory.jsx | 84 +++++++++++++++++++------------------- 1 file changed, 43 insertions(+), 41 deletions(-) (limited to 'src/views/Things/ThingsHistory.jsx') diff --git a/src/views/Things/ThingsHistory.jsx b/src/views/Things/ThingsHistory.jsx index 4b32b0e..c043a55 100644 --- a/src/views/Things/ThingsHistory.jsx +++ b/src/views/Things/ThingsHistory.jsx @@ -107,47 +107,49 @@ const ThingsHistory = () => { History: - - {thingsHistory.map((history, index) => ( - <> - - - - - {moment(history.updatedAt).format( - 'ddd MM/DD/yyyy HH:mm:ss', - )} - - {history.state === '1' ? 'Active' : 'Inactive'} - - - - {index < thingsHistory.length - 1 && ( - <> - - {/* time between two completion: */} - {index < thingsHistory.length - 1 && - thingsHistory[index + 1].createdAt && ( - - {formatTimeDifference( - history.createdAt, - thingsHistory[index + 1].createdAt, - )}{' '} - before - - )} - - - )} - - ))} - + + + {thingsHistory.map((history, index) => ( + <> + + + + + {moment(history.updatedAt).format( + 'ddd MM/DD/yyyy HH:mm:ss', + )} + + {history.state === '1' ? 'Active' : 'Inactive'} + + + + {index < thingsHistory.length - 1 && ( + <> + + {/* time between two completion: */} + {index < thingsHistory.length - 1 && + thingsHistory[index + 1].createdAt && ( + + {formatTimeDifference( + history.createdAt, + thingsHistory[index + 1].createdAt, + )}{' '} + before + + )} + + + )} + + ))} + + {/* Load more Button */}