Skip to content

Commit 7b19bf1

Browse files
committed
[Frontend] Fix label/placeholder used by the Wizard for existing EBS volumes
1 parent 9f5f57f commit 7b19bf1

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

frontend/locales/en/strings.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -891,7 +891,10 @@
891891
}
892892
},
893893
"Ebs": {
894-
"existing": "EBS ID",
894+
"existing": {
895+
"label": "EBS ID",
896+
"placeholder": "i.e., vol-1234"
897+
},
895898
"volumeType": {
896899
"label": "Volume type",
897900
"placeholder": "Default ({{defaultVolumeType}})"

frontend/src/old-pages/Configure/Storage.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1048,12 +1048,12 @@ function StorageInstance({index}: any) {
10481048
{
10491049
Ebs: (
10501050
<FormField
1051-
label={t('wizard.storage.Ebs.existing')}
1051+
label={t('wizard.storage.Ebs.existing.label')}
10521052
errorText={existingPathError}
10531053
>
10541054
<Input
10551055
placeholder={t(
1056-
'wizard.storage.instance.useExisting.placeholder',
1056+
'wizard.storage.Ebs.existing.placeholder',
10571057
)}
10581058
value={existingId}
10591059
onChange={({detail}) => {

0 commit comments

Comments
 (0)