Skip to content

Commit

Permalink
fix(admin-ui): jans-link not opening in admin-ui after running job #1217
Browse files Browse the repository at this point in the history
  • Loading branch information
jv18creator committed Jul 18, 2023
1 parent 2e7ecda commit bc69bd2
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ import { putCacheRefreshConfiguration } from 'Plugins/jans-link/redux/features/C
import GluuCommitDialog from 'Routes/Apps/Gluu/GluuCommitDialog'
import { useTranslation } from 'react-i18next'
import { buildPayload } from 'Utils/PermChecker'
import moment from 'moment/moment'

const CacheRefreshTab = () => {
const { t } = useTranslation()
Expand Down Expand Up @@ -121,7 +122,7 @@ const CacheRefreshTab = () => {
<Col sm={12}>
<Row>
<GluuLabel label={'fields.last_run'} size={3} />
<Col sm={9}>{formik.values.lastUpdate}</Col>
<Col sm={9}>{formik.values.lastUpdate ? moment(formik.values.lastUpdate).format('YYYY-MM-DD HH:mm:ss') : null}</Col>
</Row>
</Col>
<Col sm={12}>
Expand Down

0 comments on commit bc69bd2

Please sign in to comment.