We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 63ca763 commit e55e0a8Copy full SHA for e55e0a8
site/src/pages/DeploymentSettingsPage/IdpOrgSyncPage/IdpOrgSyncPageView.tsx
@@ -416,7 +416,16 @@ const OrganizationRow: FC<OrganizationRowProps> = ({
416
<Stack direction="row" alignItems="center" spacing={1}>
417
{idpOrg}
418
{!exists && (
419
- <TriangleAlert className="size-icon-sm cursor-pointer text-content-warning" />
+ <Popover>
420
+ <PopoverTrigger asChild>
421
+ <TriangleAlert className="size-icon-sm cursor-pointer text-content-warning" />
422
+ </PopoverTrigger>
423
+ <PopoverContent className="p-2 text-xs text-content-secondary">
424
+ This value has not be seen in the specified claim field before.
425
+ You might want to check your IdP configuration and ensure that
426
+ this value is not misspelled.
427
+ </PopoverContent>
428
+ </Popover>
429
)}
430
</Stack>
431
</TableCell>
0 commit comments