Skip to content
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(react-charts-preview): Migrate VSBC to V9 #33909

Open
wants to merge 10 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
change in condition
  • Loading branch information
Anush2303 committed Feb 27, 2025
commit 744b914505244462ba8c4290f824679f164815e3
Original file line number Diff line number Diff line change
@@ -1751,10 +1751,7 @@ export function createNumericYAxis(
}

export function areArraysEqual(arr1?: string[], arr2?: string[]): boolean {
if (arr1 === arr2) {
return true;
}
if (!arr1 && !arr2) {
if (arr1 === arr2 || (!arr1 && !arr2)) {
return true;
}
if (!arr1 || !arr2 || arr1.length !== arr2.length) {
Loading
Oops, something went wrong.