-
Notifications
You must be signed in to change notification settings - Fork 3.9k
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
Mtracy/sub navigation #2009
Mtracy/sub navigation #2009
Conversation
@@ -133,7 +133,7 @@ module Components { | |||
m("th", | |||
{ | |||
onclick: (e: any): void => this.SetSortColumn(col), | |||
className: this.IsSortColumn(col) ? sortClass : null | |||
className: this.IsSortColumn(col) ? sortClass : "" |
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 change this?
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.
it was actually assigning class="null"
to the html elements. With this, the class is actually blank.
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.
cool
b88ec46
to
d54c9f2
Compare
LGTM |
In the latest design wireframes, certain UI pages are composed of multiple "Tabs" - for example, the page for a single Node will have an "Overview" tab and a "Graphs" tab. Navigation between these tabs is accomplished via a Navigation Bar component, which is the same component used for the main navigation bar. Finally, the content on the various page tabs has been restructured to more closely resemble the current wireframes.
The field name of this structure was changed by cockroachdb#1976, but it has since been decided that "address" is a more accurate name than "string".
d54c9f2
to
4e32c31
Compare
Disregard comma comments, see palantir/tslint#557 |
Add per-page "tab" navigation from admin UI: