fix data list bug

This commit is contained in:
jenny-s51 2021-04-22 16:04:56 -04:00
parent 817714df0b
commit b3f8c45ddc
2 changed files with 4 additions and 4 deletions

View file

@ -170,7 +170,7 @@ export const AssociatedRolesModal = (props: AssociatedRolesModalProps) => {
onClick={() => {
props.toggleDialog();
props.onConfirm(selectedRows);
console.log(selectedRows)
console.log(selectedRows);
}}
>
{t("common:add")}

View file

@ -143,9 +143,9 @@ export const AssociatedRolesTab = ({
<>
{clientId && (
<Label color="blue" key={`label-${id}`}>
{clientId}
</Label>
)}{" "}
{clientId}
</Label>
)}{" "}
{name}
</>
);