diff --git a/openmetadata-ui/src/main/resources/ui/src/components/EntityLineage/NodeSuggestions.component.tsx b/openmetadata-ui/src/main/resources/ui/src/components/EntityLineage/NodeSuggestions.component.tsx index de2f535ed08..21f9aad3d59 100644 --- a/openmetadata-ui/src/main/resources/ui/src/components/EntityLineage/NodeSuggestions.component.tsx +++ b/openmetadata-ui/src/main/resources/ui/src/components/EntityLineage/NodeSuggestions.component.tsx @@ -11,6 +11,7 @@ * limitations under the License. */ +import { Empty } from 'antd'; import { AxiosError } from 'axios'; import { capitalize } from 'lodash'; import { FormattedTableData } from 'Models'; @@ -130,7 +131,20 @@ const NodeSuggestions: FC = ({ ))} - ) : null} + ) : ( + searchValue && ( +
+ +
+ ) + )} ); };