Skip to content

Commit

Permalink
fix(abc:st): corrected error null value syntax (#1744)
Browse files Browse the repository at this point in the history
  • Loading branch information
cipchk committed Jan 1, 2024
1 parent e963b69 commit 69bb0bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/abc/st/st-export.ts
Expand Up @@ -41,7 +41,7 @@ export class STExport {
}
}

ret.v = ret.v || '';
ret.v = ret.v ?? '';

return ret;
}
Expand Down

0 comments on commit 69bb0bb

Please sign in to comment.