Skip to content

Commit

Permalink
fix(ApiKeyRow): show api key name
Browse files Browse the repository at this point in the history
  • Loading branch information
landonreed committed Sep 8, 2021
1 parent fd58fd4 commit 8e7b60a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/ApiKeyRow.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export default class ApiKeyRow extends Component {
return (
<ListGroup.Item as='li'>
<Key size={20} style={{marginRight: 10}} />
{apiKey.keyId}{' '}
{apiKey.name} ({apiKey.keyId}){' '}
{isAdmin &&
<Button
className='float-right'
Expand Down

0 comments on commit 8e7b60a

Please sign in to comment.