-
Notifications
You must be signed in to change notification settings - Fork 285
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(auth): system api keys ui #4270
Conversation
`} | ||
> | ||
<Flex direction="row" gap="size-100" alignItems="end"> | ||
<TextField label="API Key" isReadOnly value={jwt} minWidth="100%" /> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
do we want to obscure it even though it's only displayed once - **** with copy to clipboard - change messaging a bit: "The API key will only be copyable once below..."
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
typically these are displayed once. it's similar to how github does thsee
<Controller | ||
name="name" | ||
control={control} | ||
rules={{ | ||
required: "System key name is required", | ||
}} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
for my product level understanding - there can be multiple system keys, and they can all have different names, correct?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yup, and they can ultimately have the same name if they want
resolves #4269