-
Notifications
You must be signed in to change notification settings - Fork 323
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
Improvements to the Table visualization. #6653
Conversation
673a6c4
to
2f403b5
Compare
app/gui/view/graph-editor/src/builtin/visualization/java_script/table.js
Outdated
Show resolved
Hide resolved
} else if (params.value === undefined) { | ||
return '' | ||
} else if (params.value === '') { | ||
return '<span style="color:grey; font-style: italic;">Empty</span>' |
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.
what do you think about
return '<span style="color:grey; font-style: italic;">Empty</span>' | |
return '<span style="color:grey; font-style: italic;">Empty Text</span>' |
or
return '<span style="color:grey; font-style: italic;">Empty</span>' | |
return '<span style="color:grey; font-style: italic;">""</span>' |
Empty
is not that clear to me that this is a text.
Personally I like ""
most.
But if you think that for data analysts Empty
will be clearer, I'm not against it.
app/gui/view/graph-editor/src/builtin/visualization/java_script/table.js
Outdated
Show resolved
Hide resolved
distribution/lib/Standard/Base/0.0.0-dev/src/Data/Text/Extensions.enso
Outdated
Show resolved
Hide resolved
distribution/lib/Standard/Visualization/0.0.0-dev/src/Table/Visualization.enso
Outdated
Show resolved
Hide resolved
distribution/lib/Standard/Visualization/0.0.0-dev/src/Table/Visualization.enso
Outdated
Show resolved
Hide resolved
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.
Looks good, I'm especially happy about the pretty Nothing
visualization in Table.
A few suggestions in line, please take what you like and drop the rest :)
… the row out of the grid.
Add page to Visualization but ignore for now. Support for Function in table so doesn't error.
Rounded corners on the status controls div.
630e7c4
to
f01cc68
Compare
…z-6260 * develop: Build nightlies every day. (#6681) Force `newDashboard` default on the CI-built packages. (#6680) Verify ascribed types of parameters really exist (#6584) SuggestionBuilder needs to send ascribedType of constructor parameters (#6655) Improvements to the Table visualization. (#6653) Removing flush (#6670) Improving widgets for take/drop (#6641)
* develop: Build nightlies every day. (#6681) Force `newDashboard` default on the CI-built packages. (#6680) Verify ascribed types of parameters really exist (#6584) SuggestionBuilder needs to send ascribedType of constructor parameters (#6655) Improvements to the Table visualization. (#6653) Removing flush (#6670) Improving widgets for take/drop (#6641) disable authentication and newDashboard by default (#6664) Add COOP+COEP+CORP headers (#6646)
Pull Request Description
Nothing
rendered as a italic light Nothing not just empty now.[Function]
.Text.split
delimiter feed.Screenshots
Checklist
Please ensure that the following checklist has been satisfied before submitting the PR:
Scala,
Java,
and
Rust
style guides. In case you are using a language not listed above, follow the Rust style guide.
./run ide build
.