diff --git a/openmetadata-ui/selenium.properties b/openmetadata-ui/selenium.properties index d39e7eb7a6a..0b68543e7fb 100644 --- a/openmetadata-ui/selenium.properties +++ b/openmetadata-ui/selenium.properties @@ -19,4 +19,4 @@ webDriver = webdriver.chrome.driver webDriverPath = src/test/resources/drivers/linux/chromedriver # Enter Time In Milliseconds -waitTime = 700 +waitTime = 2000 diff --git a/openmetadata-ui/src/main/resources/ui/src/components/AddGlossary/AddGlossary.component.tsx b/openmetadata-ui/src/main/resources/ui/src/components/AddGlossary/AddGlossary.component.tsx index cbc1a631ee8..c54988e2e76 100644 --- a/openmetadata-ui/src/main/resources/ui/src/components/AddGlossary/AddGlossary.component.tsx +++ b/openmetadata-ui/src/main/resources/ui/src/components/AddGlossary/AddGlossary.component.tsx @@ -11,6 +11,7 @@ * limitations under the License. */ +import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'; import classNames from 'classnames'; import { cloneDeep } from 'lodash'; import { EditorContentRef, FormattedUsersData } from 'Models'; @@ -30,7 +31,6 @@ import Loader from '../Loader/Loader'; import ReviewerModal from '../Modals/ReviewerModal/ReviewerModal.component'; import Tags from '../tags/tags'; import { AddGlossaryProps } from './AddGlossary.interface'; -import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'; const Field = ({ children }: { children: React.ReactNode }) => { return
{children}
; @@ -225,6 +225,7 @@ const AddGlossary = ({

Reviewers: