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
Show file tree
Hide file tree
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: fix text
  • Loading branch information
jaaydenh committed Feb 7, 2025
commit 48d885674eac71e844c7a19c8467107fd73a973e
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ export const IdpGroupSyncForm: FC<IdpGroupSyncFormProps> = ({
<Combobox
value={idpGroupName}
options={claimFieldValues}
placeholder="Select IdP organization"
placeholder="Select IdP group"
open={open}
onOpenChange={setOpen}
inputValue={comboInputValue}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ 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>{" "}
groups
{type.toLocaleLowerCase()}{(rowCount === 0 || rowCount > 1) && "s"}
</div>
</div>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ export const IdpRoleSyncForm: FC<IdpRoleSyncFormProps> = ({
<Combobox
value={idpRoleName}
options={claimFieldValues}
placeholder="Select IdP organization"
placeholder="Select IdP role"
open={open}
onOpenChange={setOpen}
inputValue={comboInputValue}
Expand Down