Skip to content

Commit 8a2cd65

Browse files
authored
fix(react): add truncation to domain display
2 parents 0a9878d + f0c2ed8 commit 8a2cd65

3 files changed

Lines changed: 5 additions & 3 deletions

File tree

packages/core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@auth0/universal-components-core",
3-
"version": "1.0.0-beta.27",
3+
"version": "1.0.0-beta.28",
44
"description": "Core utilities for Auth0 Universal Components",
55
"main": "./dist/index.js",
66
"module": "./dist/index.mjs",

packages/react/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@auth0/universal-components-react",
3-
"version": "1.0.0-beta.27",
3+
"version": "1.0.0-beta.28",
44
"private": false,
55
"sideEffects": [
66
"*.css"

packages/react/src/components/auth0/my-organization/shared/idp-management/sso-provider-edit/sso-domain-tab.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,9 @@ export function SsoDomainTab({
9292
type: 'text',
9393
accessorKey: 'domain',
9494
title: t('table.columns.name'),
95-
render: (domain) => <div className="font-medium text-primary">{domain.domain}</div>,
95+
render: (domain) => (
96+
<div className="font-medium text-primary truncate">{domain.domain}</div>
97+
),
9698
},
9799
{
98100
type: 'text',

0 commit comments

Comments
 (0)