1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-01-25 00:07:47 +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>Project:</b> {renderProject(item.project)}
</TableCell>
</>} />
</>}
elseShow={<>
<TableCell className={styles.token}>
<b>Type:</b> {item.type}<br/>
<b>Username:</b> {item.username}
</TableCell>
</>}
/>
<TableCell className={styles.hideMD}>
<Secret value={item.secret} />
</TableCell>