Skip to content

Commit 590007a

Browse files
authored
Disable create button after successful bucket creation (#2241)
* disable create button after creation * disable create button after creation
1 parent 5f7a382 commit 590007a

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

plugins/com.google.cloud.tools.eclipse.dataflow.ui/src/com/google/cloud/tools/eclipse/dataflow/ui/preferences/RunOptionsDefaultsComponent.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -347,6 +347,7 @@ public void widgetSelected(SelectionEvent event) {
347347
if (result.isSuccessful()) {
348348
messageTarget.setInfo("Created staging location at " + stagingLocation);
349349
setPageComplete(true);
350+
createButton.setEnabled(false);
350351
} else {
351352
messageTarget.setError("Could not create staging location at " + stagingLocation);
352353
setPageComplete(false);

0 commit comments

Comments
 (0)