Fix #6932 UI | Full Table name is not displayed on the Table Home Page (#6933)

This commit is contained in:
Sachin Chaurasiya 2022-08-26 00:36:53 +05:30 committed by GitHub
parent ef5de94a8f
commit ff1d2c251a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -13,6 +13,7 @@
import { faAngleRight } from '@fortawesome/free-solid-svg-icons'; import { faAngleRight } from '@fortawesome/free-solid-svg-icons';
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'; import { FontAwesomeIcon } from '@fortawesome/react-fontawesome';
import { Tooltip } from 'antd';
import classNames from 'classnames'; import classNames from 'classnames';
import React, { import React, {
FunctionComponent, FunctionComponent,
@ -106,6 +107,7 @@ const TitleBreadcrumb: FunctionComponent<TitleBreadcrumbProps> = ({
</Link> </Link>
) : ( ) : (
<> <>
<Tooltip align={{ offset: [0, 10] }} title={link.name}>
<span <span
className={classNames( className={classNames(
classes, classes,
@ -117,6 +119,7 @@ const TitleBreadcrumb: FunctionComponent<TitleBreadcrumbProps> = ({
}}> }}>
{link.name} {link.name}
</span> </span>
</Tooltip>
{noLink && index < titleLinks.length - 1 && ( {noLink && index < titleLinks.length - 1 && (
<span className="tw-px-2"> <span className="tw-px-2">
<FontAwesomeIcon <FontAwesomeIcon