diff --git a/frontend/src/components/table/TableRowTitleDescription.tsx b/frontend/src/components/table/TableRowTitleDescription.tsx index 46796ee4fb..0fd68ceec7 100644 --- a/frontend/src/components/table/TableRowTitleDescription.tsx +++ b/frontend/src/components/table/TableRowTitleDescription.tsx @@ -19,7 +19,7 @@ type TableRowTitleDescriptionProps = { const TableRowTitleDescription: React.FC = ({ title, - boldTitle = true, + boldTitle = false, titleIcon, description, resource, diff --git a/frontend/src/concepts/dashboard/DashboardPopupIconButton.tsx b/frontend/src/concepts/dashboard/DashboardPopupIconButton.tsx index 2984a3e08a..d1b46ad8ed 100644 --- a/frontend/src/concepts/dashboard/DashboardPopupIconButton.tsx +++ b/frontend/src/concepts/dashboard/DashboardPopupIconButton.tsx @@ -1,5 +1,5 @@ import React from 'react'; -import { Button, ButtonProps, Icon } from '@patternfly/react-core'; +import { Button, ButtonProps } from '@patternfly/react-core'; type DashboardPopupIconButtonProps = Omit & { icon: React.ReactNode; @@ -12,7 +12,7 @@ const DashboardPopupIconButton = ({ icon, ...props }: DashboardPopupIconButtonProps): React.JSX.Element => ( -