Skip to content

Commit

Permalink
Merge branch 'fix/actionid-nan-initial-value' into v2
Browse files Browse the repository at this point in the history
  • Loading branch information
mguellsegarra committed Jul 9, 2024
2 parents 33ae146 + 818f3cb commit 775e479
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Indicator.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,12 +33,12 @@ class Indicator extends Selection {
/**
* Action id
*/
_actionId: number = NaN;
get actionId(): number {
_actionId: number | undefined = undefined;
get actionId(): number | undefined {
return this._actionId;
}

set actionId(value: number) {
set actionId(value: number | undefined) {
this._actionId = value;
}

Expand Down

0 comments on commit 775e479

Please sign in to comment.