diff --git a/web/satellite/src/components/dialogs/AppSetupDialog.vue b/web/satellite/src/components/dialogs/AppSetupDialog.vue index 57c4fd47b48f..60b9ecef73c1 100644 --- a/web/satellite/src/components/dialogs/AppSetupDialog.vue +++ b/web/satellite/src/components/dialogs/AppSetupDialog.vue @@ -21,33 +21,70 @@ variant="text" size="small" color="default" + :disabled="isCreating" @click="model = false" /> + - + - + - + + + + + + + + + - + - + - + @@ -60,9 +97,10 @@ variant="outlined" color="default" block + :disabled="isCreating || isFetching" @click="prevStep" > - Cancel + {{ stepInfos[step].prevText }} @@ -71,9 +109,11 @@ color="primary" variant="flat" block + :loading="isCreating" + :disabled="isFetching" @click="nextStep" > - Next + {{ stepInfos[step].nextText.value }} + + diff --git a/web/satellite/src/components/dialogs/appSetupSteps/AccessCreatedStep.vue b/web/satellite/src/components/dialogs/appSetupSteps/AccessCreatedStep.vue index 7718b05e3732..406e6aba4d77 100644 --- a/web/satellite/src/components/dialogs/appSetupSteps/AccessCreatedStep.vue +++ b/web/satellite/src/components/dialogs/appSetupSteps/AccessCreatedStep.vue @@ -14,33 +14,42 @@ flat density="comfortable" label="Access Key" - model-value="jx5n3ocoloor4ei2qh6jsqstjuqa" - read-only + :model-value="credentials.accessKeyId" + readonly hide-details - append-inner-icon="mdi-content-copy" - /> + > + + + > + + + > + + @@ -55,4 +64,12 @@ diff --git a/web/satellite/src/components/dialogs/appSetupSteps/ChooseFlowStep.vue b/web/satellite/src/components/dialogs/appSetupSteps/ChooseFlowStep.vue index bf514b7fa36b..b90a421eddc1 100644 --- a/web/satellite/src/components/dialogs/appSetupSteps/ChooseFlowStep.vue +++ b/web/satellite/src/components/dialogs/appSetupSteps/ChooseFlowStep.vue @@ -2,7 +2,7 @@ // See LICENSE for copying information.