Skip to content

Commit 5a5af68

Browse files
Scroll issue on Glossary related entity page (#5804)
1 parent 7d0f543 commit 5a5af68

File tree

2 files changed

+6
-16
lines changed

2 files changed

+6
-16
lines changed
Lines changed: 5 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,8 @@
1-
import { Col, Row } from 'antd';
21
import * as React from 'react';
3-
import styled from 'styled-components';
42
import { EmbeddedListSearchSection } from '../../shared/components/styled/search/EmbeddedListSearchSection';
53

64
import { useEntityData } from '../../shared/EntityContext';
75

8-
const GroupAssetsWrapper = styled(Row)`
9-
height: 100%;
10-
`;
11-
126
export default function GlossaryRelatedEntity() {
137
const { entityData }: any = useEntityData();
148
const glossaryTermHierarchicalName = entityData?.hierarchicalName;
@@ -19,14 +13,10 @@ export default function GlossaryRelatedEntity() {
1913
});
2014

2115
return (
22-
<GroupAssetsWrapper>
23-
<Col md={24} lg={24} xl={24}>
24-
<EmbeddedListSearchSection
25-
fixedQuery={fixedQueryString}
26-
emptySearchQuery="*"
27-
placeholderText="Filter entities..."
28-
/>
29-
</Col>
30-
</GroupAssetsWrapper>
16+
<EmbeddedListSearchSection
17+
fixedQuery={fixedQueryString}
18+
emptySearchQuery="*"
19+
placeholderText="Filter entities..."
20+
/>
3121
);
3222
}

datahub-web-react/src/app/ingest/secret/SecretBuilderModal.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ export const SecretBuilderModal = ({ initialState, visible, onSubmit, onCancel }
110110
]}
111111
hasFeedback
112112
>
113-
<Input
113+
<Input.Password
114114
placeholder="The value of your secret"
115115
value={secretBuilderState.value}
116116
onChange={(event) => setValue(event.target.value)}

0 commit comments

Comments
 (0)