Skip to content

Commit

Permalink
[#753][3.0] Update NPM Version (#814)
Browse files Browse the repository at this point in the history
################
- fix ? condition
  • Loading branch information
kdeun1 authored May 6, 2021
1 parent a3ae1ab commit fb31f9f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "evui",
"version": "3.1.17",
"version": "3.1.19",
"description": "A EXEM Library project",
"author": "exem <dev_client@ex-em.com>",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion src/components/chart/model/model.store.js
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ const modules = {

if (sIdx > 0) {
bdata = isHorizontal ? bdata.x : bdata.y;
gdata = bdata + (odata.value ?? odata);
gdata = bdata + (odata?.value ?? odata);
} else {
bdata = 0;
gdata = odata;
Expand Down

0 comments on commit fb31f9f

Please sign in to comment.