-
Notifications
You must be signed in to change notification settings - Fork 3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(ml model): updating view of ml model feature list #6576
feat(ml model): updating view of ml model feature list #6576
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM but if we could rename that one field that would be great
width: 125, | ||
title: 'Terms', | ||
dataIndex: 'glossaryTerms', | ||
key: 'glossarTerms', |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
is this misnamed?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ah I see it's like that in the original as well. Can we change it?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
done!
@@ -8,7 +8,21 @@ query getMLModel($urn: String!) { | |||
...partialLineageResults | |||
} | |||
features: relationships(input: { types: ["Consumes"], direction: OUTGOING, start: 0, count: 100 }) { | |||
...fullRelationshipResults | |||
start |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice presumably this reduces latency?
…ct#6576) * updating view of ml model feature list * Update TableOfMlFeatures.tsx
Updates the view of the ml model's features to align with feature table list. Refactors the code of MlFeatureTableFeatures.tsx to factor out the table itself into a reusable component.
Checklist