1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-03-18 00:19:49 +01:00

fix: token column not showing up

This commit is contained in:
Youssef Khedher 2021-10-08 14:50:37 +01:00
parent eaee97dfc7
commit 5304b29fd7

View File

@ -151,9 +151,14 @@ const ApiTokenList = ({ location }: IApiTokenList) => {
<b>Env:</b> {item.environment}<br/> <b>Env:</b> {item.environment}<br/>
<b>Project:</b> {renderProject(item.project)} <b>Project:</b> {renderProject(item.project)}
</TableCell> </TableCell>
</>}
</>} /> elseShow={<>
<TableCell className={styles.token}>
<b>Type:</b> {item.type}<br/>
<b>Username:</b> {item.username}
</TableCell>
</>}
/>
<TableCell className={styles.hideMD}> <TableCell className={styles.hideMD}>
<Secret value={item.secret} /> <Secret value={item.secret} />
</TableCell> </TableCell>