diff --git a/openmetadata-ui/src/main/resources/ui/src/components/common/CustomPropertyTable/PropertyInput.tsx b/openmetadata-ui/src/main/resources/ui/src/components/common/CustomPropertyTable/PropertyInput.tsx index c8c0128ac6a2..1f43636a57b0 100644 --- a/openmetadata-ui/src/main/resources/ui/src/components/common/CustomPropertyTable/PropertyInput.tsx +++ b/openmetadata-ui/src/main/resources/ui/src/components/common/CustomPropertyTable/PropertyInput.tsx @@ -48,7 +48,7 @@ export const PropertyInput: FC = ({ = ({ const getPropertyInput = () => { const commonStyle: CSSProperties = { marginBottom: '0px', - minWidth: '250px', + width: '100%', }; switch (propertyType.name) { case 'string': @@ -314,11 +314,11 @@ export const PropertyValue: FC = ({ @@ -359,10 +359,10 @@ export const PropertyValue: FC = ({ @@ -905,7 +905,7 @@ export const PropertyValue: FC = ({ return (
diff --git a/openmetadata-ui/src/main/resources/ui/src/components/common/CustomPropertyTable/property-value.less b/openmetadata-ui/src/main/resources/ui/src/components/common/CustomPropertyTable/property-value.less index fc786b0bdae7..cd625c814427 100644 --- a/openmetadata-ui/src/main/resources/ui/src/components/common/CustomPropertyTable/property-value.less +++ b/openmetadata-ui/src/main/resources/ui/src/components/common/CustomPropertyTable/property-value.less @@ -94,5 +94,6 @@ } .custom-property-inline-edit-container { + width: 100%; overflow-x: scroll; } diff --git a/openmetadata-ui/src/main/resources/ui/src/components/common/InlineEdit/InlineEdit.component.tsx b/openmetadata-ui/src/main/resources/ui/src/components/common/InlineEdit/InlineEdit.component.tsx index e7e97214b088..97e203b9fd16 100644 --- a/openmetadata-ui/src/main/resources/ui/src/components/common/InlineEdit/InlineEdit.component.tsx +++ b/openmetadata-ui/src/main/resources/ui/src/components/common/InlineEdit/InlineEdit.component.tsx @@ -14,6 +14,7 @@ import { CheckOutlined, CloseOutlined } from '@ant-design/icons'; import { Button, Space } from 'antd'; import classNames from 'classnames'; import React from 'react'; +import './inline-edit.less'; import { InlineEditProps } from './InlineEdit.interface'; const InlineEdit = ({ @@ -28,7 +29,8 @@ const InlineEdit = ({ }: InlineEditProps) => { return (