Skip to content

Commit 63b2e6a

Browse files
committed
check for form value
1 parent 61c7c0e commit 63b2e6a

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

OpenFlow/src/public/Controllers.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1593,7 +1593,7 @@ module openflow {
15931593
}
15941594
}
15951595
async Save() {
1596-
if (this.form.fbeditor === true) {
1596+
if (this.form !== null && this.form !== undefined && this.form.fbeditor === true) {
15971597
var userData: any[] = this.formRender.userData;
15981598
if (this.model.payload === null || this.model.payload === undefined) { this.model.payload = {}; }
15991599
for (var i = 0; i < userData.length; i++) {

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.0.487
1+
0.0.488

0 commit comments

Comments
 (0)