geer-builder 1.2.691 → 1.2.692

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -32,7 +32,6 @@
32
32
  </div>
33
33
  </div>
34
34
  </div>
35
- </div>
36
35
 
37
36
  </template>
38
37
 
@@ -99,8 +98,15 @@
99
98
  this.table_data[i].message_status = "Failed.";
100
99
  if(d.error_type == 0)
101
100
  {
102
- this.table_data[i].message = "Successfully ordered.";
103
- this.table_data[i].message_status = "Success.";
101
+ if(d.status == "FAILED")
102
+ {
103
+ this.table_data[i].message = d.response.failure_reason;
104
+ }
105
+ else
106
+ {
107
+ this.table_data[i].message = "Successfully ordered.";
108
+ this.table_data[i].message_status = "Success.";
109
+ }
104
110
  }
105
111
  else if(d.error_type == 4)
106
112
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "geer-builder",
3
- "version": "1.2.691",
3
+ "version": "1.2.692",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {