added a bit of time delay for register/deregister and also a confirm button for delete

This commit is contained in:
sara-pervana
2024-01-29 19:28:40 +01:00
committed by Sara Pervana
parent b5008306cb
commit 04675f5e9e
3 changed files with 56 additions and 18 deletions

View File

@@ -190,7 +190,7 @@ export default function Client() {
],
}}
/>
<div className="flex items-center flex-nowrap justify-between w-full">
<div className="flex items-center flex-nowrap justify-between">
<div style={{ width: consumeContent ? "55%" : "100%" }}>
<h4>Service Consumer View</h4>
<CustomTable
@@ -245,18 +245,3 @@ export default function Client() {
</div>
);
}
const ClientTable = () => {
return (
<div>
{/* <h4>Client View</h4>
<CustomTable
loading={services_loading}
data={clients}
onConsumeAction={handleConsumeContent}
configuration={ClientTableConfig}
tkey="client-table"
/> */}
</div>
);
};