-
Notifications
You must be signed in to change notification settings - Fork 14.1k
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
chore(frontend): Spelling #25452
chore(frontend): Spelling #25452
Conversation
* Collapes Native Filter from the left panel on dashboard | ||
* Collapses Native Filter from the left panel on dashboard | ||
* @returns {None} | ||
* @summary helper for collape native filter | ||
* @summary helper for collapse native filter |
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 have a feeling we talked about this in the past, but I'm not certain...
program_language: 'Javscript', | ||
program_language: 'JavaScript', |
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.
similarly.
fwiw, I threw out my baseline because I wanted to test the next version of check-spelling...
// When clicking a subdivision, the vis will zoom in to it | ||
// When clicking a subdivision, the vis will zoom into 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.
often controversial
// TODO the test bellow is flaky, and has been disabled for the time being | ||
// TODO the test below is flaky, and has been disabled for the time being |
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 actually a word: https://www.merriam-webster.com/dictionary/bellow, but it's almost never right, so I now reject it by default in spell-check-this: https://github.com/check-spelling/spell-check-this/blob/b968ca32e0e5961a85c7fe3e9431f81553c3f434/.github/actions/spelling/reject.txt#L2
it('should assign allowed non-existent value', () => { | ||
it('should assign allowed nonexistent value', () => { |
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.
often controversial (I can't find the discussion)
search: '?unkown_param=value', | ||
search: '?unknown_param=value', |
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.
always unclear when tests do things like this what they're testing...
const isGranularitySqalTemporal = columns.find( | ||
const isGranularitySqlaTemporal = columns.find( |
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.
brand
.find('#duplicate-action-tooltop') | ||
.find('#duplicate-action-tooltip') |
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.
notable
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 looks like you got it in the other location where it's set, so we should be fine.
// setup appwide custom error messages | ||
// set up app wide custom error messages |
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.
notable. setup
is a noun but this wants the verb-phrase, and there's no particularly good reason to merge app
+wide
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.
arguably it should be app-wide.
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.
... but I won't lose any sleep over that.
"Don't use variables in translation string templates. Flask-babel is a static translation translation service, so it can’t handle strings that include variables", | ||
"Don't use variables in translation string templates. Flask-babel is a static translation service, so it can’t handle strings that include variables", |
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.
duplicate words are usually typos...
f0834ea
to
4c64aa8
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.
Sadly, these files are a mix of frontend/backend. I should have looked more carefully...
4c64aa8
to
4f8360c
Compare
function openMoreFilters(intercetFilterState = true) { | ||
function openMoreFilters(waitFilterState = true) { | ||
interceptFilterState(); | ||
cy.getBySel('dropdown-container-btn').click(); | ||
|
||
if (intercetFilterState) { | ||
if (waitFilterState) { |
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 typo meant that people didn't realize that they were almost shadowing a function. I've renamed the argument to wait
instead of intercept
to more accurately describe what the boolean guards...
superset-frontend/packages/superset-ui-core/test/chart/components/ChartDataProvider.test.tsx
Outdated
Show resolved
Hide resolved
@@ -170,7 +170,7 @@ export const showControls: CustomControlItem = { | |||
default: false, | |||
description: t( | |||
'Whether to show extra controls or not. Extra controls ' + | |||
'include things like making mulitBar charts stacked ' + | |||
'include things like making multiBar charts stacked ' + |
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 might actually need to be multi-bar... but what you have here is an improvement, so that's fine :D
@@ -493,7 +493,7 @@ const DatasetList: FunctionComponent<DatasetListProps> = ({ | |||
)} | |||
{canDuplicate && original.kind === 'virtual' && ( | |||
<Tooltip | |||
id="duplicate-action-tooltop" | |||
id="duplicate-action-tooltip" |
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.
here's the instance you caught (thanks!) that affects the script elsewhere.
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! There's a few things we could nit-pick, perhaps, but this is a ton of nice fixes... let's merge it when CI passes!
Codeowner stamp needed from @kgabryje @geido or @michael-s-molina |
Oof... not so sure about this one @jsoref - looks like a more painful rebase situation than the other PR :D |
lemme look... |
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
2b7a758
to
475ff79
Compare
@rusackas: rebased -- thankfully single correction scoped commits isn't as daunting as a squashed quagmire when rebasing :) |
SUMMARY
Spelling fixes for the frontend
BEFORE/AFTER SCREENSHOTS OR ANIMATED GIF
TESTING INSTRUCTIONS
ADDITIONAL INFORMATION