mirror of
https://github.com/farcasclaudiu/Flowise.git
synced 2026-06-22 09:01:09 +03:00
[FEATURE] Show time with date for last modified date for chatflow/agentflow/credentials/variables (#4300)
feat(ui): show time with date for last modified date for chatflow/agentflow/credentials/variables Co-authored-by: coolpengwing <coolpengwing@gmail.com>
This commit is contained in:
@@ -248,7 +248,9 @@ export const FlowListTable = ({ data, images, isLoading, filterFunction, updateF
|
||||
</Box>
|
||||
)}
|
||||
</StyledTableCell>
|
||||
<StyledTableCell key='3'>{moment(row.updatedDate).format('MMMM Do, YYYY')}</StyledTableCell>
|
||||
<StyledTableCell key='3'>
|
||||
{moment(row.updatedDate).format('MMMM Do, YYYY HH:mm:ss')}
|
||||
</StyledTableCell>
|
||||
<StyledTableCell key='4'>
|
||||
<Stack
|
||||
direction={{ xs: 'column', sm: 'row' }}
|
||||
|
||||
@@ -352,10 +352,10 @@ const Credentials = () => {
|
||||
</Box>
|
||||
</StyledTableCell>
|
||||
<StyledTableCell>
|
||||
{moment(credential.updatedDate).format('MMMM Do, YYYY')}
|
||||
{moment(credential.updatedDate).format('MMMM Do, YYYY HH:mm:ss')}
|
||||
</StyledTableCell>
|
||||
<StyledTableCell>
|
||||
{moment(credential.createdDate).format('MMMM Do, YYYY')}
|
||||
{moment(credential.createdDate).format('MMMM Do, YYYY HH:mm:ss')}
|
||||
</StyledTableCell>
|
||||
<StyledTableCell>
|
||||
<IconButton title='Edit' color='primary' onClick={() => edit(credential)}>
|
||||
|
||||
@@ -340,10 +340,10 @@ const Variables = () => {
|
||||
/>
|
||||
</StyledTableCell>
|
||||
<StyledTableCell>
|
||||
{moment(variable.updatedDate).format('MMMM Do, YYYY')}
|
||||
{moment(variable.updatedDate).format('MMMM Do, YYYY HH:mm:ss')}
|
||||
</StyledTableCell>
|
||||
<StyledTableCell>
|
||||
{moment(variable.createdDate).format('MMMM Do, YYYY')}
|
||||
{moment(variable.createdDate).format('MMMM Do, YYYY HH:mm:ss')}
|
||||
</StyledTableCell>
|
||||
<StyledTableCell>
|
||||
<IconButton title='Edit' color='primary' onClick={() => edit(variable)}>
|
||||
|
||||
Reference in New Issue
Block a user