Skip to content

Commit 3b4f383

Browse files
authored
fix(ui): add overflow wrap for dpi / model summary tab & add custom properties in mlmodelgroup queries (#12771)
1 parent 5576b3c commit 3b4f383

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

datahub-web-react/src/app/entity/dataProcessInstance/profile/DataProcessInstanceSummary.tsx

+1
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ const InfoItemContainer = styled.div<{ justifyContent }>`
2424
const InfoItemContent = styled.div`
2525
padding-top: 8px;
2626
width: 100px;
27+
overflow-wrap: break-word;
2728
`;
2829

2930
const propertyTableColumns = [

datahub-web-react/src/app/entity/mlModel/profile/MLModelSummary.tsx

+1-3
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,7 @@ const InfoItemContainer = styled.div<{ justifyContent }>`
2626
const InfoItemContent = styled.div`
2727
padding-top: 8px;
2828
width: 100px;
29-
display: flex;
30-
flex-wrap: wrap;
31-
gap: 5px;
29+
overflow-wrap: break-word;
3230
`;
3331

3432
const JobLink = styled(Link)`

datahub-web-react/src/graphql/fragments.graphql

+4
Original file line numberDiff line numberDiff line change
@@ -1151,6 +1151,10 @@ fragment nonRecursiveMLModelGroupFields on MLModelGroup {
11511151
trainingJobs
11521152
downstreamJobs
11531153
}
1154+
customProperties {
1155+
key
1156+
value
1157+
}
11541158
}
11551159
browsePathV2 {
11561160
...browsePathV2Fields

0 commit comments

Comments
 (0)