update the dlg table
Some checks failed
checks-impure / test (pull_request) Successful in 25s
checks / test (pull_request) Failing after 1m53s

This commit is contained in:
sara-pervana
2023-11-19 15:51:59 +01:00
parent da251c992c
commit 5edf956d2b

View File

@@ -1,9 +1,11 @@
import { Checkbox } from "@mui/material"
export const DLGdummyData = [
{
requester_name: "C1",
"requester_did": "did:sov:test:1234",
"did_resolved": "did:sov:test:123",
"timestamp": "2023.11.01.17:05:48"
"timestamp": "2023.11.01.17:05:48",
}
]
@@ -25,4 +27,9 @@ export const DLGTableConfig = [
key: "timestamp",
label: "Timestamp"
},
{
key: "visible",
label: "Visible",
render: (value: any) => <Checkbox />
}
]