-
Notifications
You must be signed in to change notification settings - Fork 356
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: enable list pages [DET-3705] #992
Conversation
c80921a
to
72482bb
Compare
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.
This is going to be great although I think we still need a few other tickets before we can proceed with this :)
probably for other PRs:
- we can't create notebooks
- tensorboard sources missing
72482bb
to
824c707
Compare
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.
This looks good to me and the tests are failing as expected. Would be good to check it out after all the dependencies are merged in. to see the launch notebook and dropdown action in action.
I think we are skipping at least one test unintentionally
d1c18c1
to
4d5e216
Compare
4d5e216
to
9cd15bc
Compare
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.
I didn't review the Elm portion, but otherwise looks good to me
@@ -100,6 +100,9 @@ | |||
.icon-star::before { | |||
content: "\e90a"; | |||
} | |||
.icon-tasks::before { | |||
content: "\e920"; |
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.
Why do we use ::before
here?
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.
pseudoelements are common for inserting text through css if that's what you're asking : )
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.
great question: it's a pattern typically used to display icons via font icon using a pseudo-element ::before
. Pseudo elements are reserved for visual elements only and ignored for things like accessibility (like aria-label
and title
)
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.
elm side looks good to me 🎉 🚢 🚀
Description
UPDATE: PR 991 landed
This PR needs to land after PR 991
Test Plan
Commentary (optional)