chore(deps-dev): bump oxlint from 1.42.0 to 1.46.0 in /superset-frontend (#37917)

Signed-off-by: dependabot[bot] <support@github.com>
Signed-off-by: hainenber <dotronghai96@gmail.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: hainenber <dotronghai96@gmail.com>
This commit is contained in:
dependabot[bot]
2026-02-12 21:45:26 +07:00
committed by GitHub
parent 30ccbb2e05
commit afacca350f
6 changed files with 280 additions and 58 deletions

View File

@@ -142,8 +142,8 @@ const naturalSort: SortFunction = (as, bs) => {
}
// finally, "smart" string sorting per http://stackoverflow.com/a/4373421/112871
let a = String(as);
let b = String(bs);
const a = String(as);
const b = String(bs);
if (a === b) {
return 0;
}