We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 32b8539 commit 1081868Copy full SHA for 1081868
src/ImageRunModal.jsx
@@ -274,8 +274,13 @@ export class ImageRunModal extends React.Component {
274
};
275
276
async onCreateClicked(runImage = false) {
277
- if (!await this.validateForm())
+ console.log("XXX onCreateClicked", runImage, "start");
278
+ if (!await this.validateForm()) {
279
+ console.log("XXX onCreateClicked", runImage, "form failed validation");
280
return;
281
+ }
282
+
283
+ console.log("XXX onCreateClicked", runImage, "form validated");
284
285
this.setState({ inProgress: true });
286
0 commit comments