-
Notifications
You must be signed in to change notification settings - Fork 3
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
Release/v1.3.1 #33
Release/v1.3.1 #33
Conversation
Codecov Report
@@ Coverage Diff @@
## master #33 +/- ##
=========================================
- Coverage 50.65% 50.46% -0.2%
=========================================
Files 29 29
Lines 1297 1302 +5
Branches 345 347 +2
=========================================
Hits 657 657
- Misses 640 645 +5
Continue to review full report at Codecov.
|
if (!this.isRunningAction) { | ||
this.onStartAction(); | ||
if (options.mxObject) { | ||
// handleOnClick(options.options, options.mxObject, options.mxForm); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
old comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
removed
mx.ui.hideProgress(this.showProgress); | ||
} | ||
|
||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Remove empty line
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
removed
.then(newMxObject => { | ||
handleOnClick(options.options, newMxObject, options.mxForm) | ||
.then(this.onStopActionbound) | ||
.catch((error) => { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
no need for parentheses around (error)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
sure, thanks
} | ||
} , 120); | ||
} | ||
private onStopAction() { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
empty line before function declaration
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for catching it. (uuh, I have references of usage on top of every function, they mislead, however my linters should do their job - will fix them)
private instanceID = getInstanceID(this.props.friendlyId, store, "bar"); | ||
private scatterData = this.getData(this.props); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
When new series are added in the WM will they all have new data?
src/utils/data.ts
Outdated
const context = new mendix.lib.MxContext(); | ||
|
||
if (!mxObject || options.onClickEvent === "doNothing") { | ||
return; | ||
resolve(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
should we resolve and return?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yea, right! thanks
Includes fix to: