We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
main
In this code
KLineChart/src/component/Overlay.ts
Lines 351 to 357 in 0459735
this._overlay.id is '', thus isString(id) is true, causing '' to replace back the correct id.
this._overlay.id
''
isString(id)
Thus the correct code should be
if (isString(id) && id !== '') { this._overlay.id = id }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Version
main
Steps to Reproduce
In this code
KLineChart/src/component/Overlay.ts
Lines 351 to 357 in 0459735
this._overlay.id
is''
, thusisString(id)
is true, causing''
to replace back the correct id.Thus the correct code should be
The text was updated successfully, but these errors were encountered: