8000 feat: add combobox for selecting claim field value for group/role idp sync by jaaydenh · Pull Request #16459 · coder/coder · GitHub
[go: up one dir, main page]

Skip to content

feat: add combobox for selecting claim field value for group/role idp sync #16459

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

Merged
merged 6 commits into from
Feb 7, 2025
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix: format
  • Loading branch information
jaaydenh committed Feb 7, 2025
commit 756bff80798cb3e10124dbfa94920a36b504a57a
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,8 @@ export const IdpMappingTable: FC<IdpMappingTableProps> = ({
<div className="flex justify-end">
<div className="text-content-secondary text-xs">
Showing <strong className="text-content-primary">{rowCount}</strong>{" "}
{type.toLocaleLowerCase()}{(rowCount === 0 || rowCount > 1) && "s"}
{type.toLocaleLowerCase()}
{(rowCount === 0 || rowCount > 1) && "s"}
</div>
</div>
</div>
Expand Down
0