CreateImageWizard: set azure field length to 50% width
Azure form fields only need to take in 36 characters for the ID so they don't need to take up the full width of the wizard. These fields are now 50% width. The resource group doesn't have the same character limit but is set to the same 50% for visual consistency.
This commit is contained in:
parent
0ff6515e11
commit
1a6938ef1f
1 changed files with 3 additions and 0 deletions
|
|
@ -46,6 +46,7 @@ export default {
|
|||
{
|
||||
component: componentTypes.TEXT_FIELD,
|
||||
name: 'azure-tenant-id',
|
||||
className: 'pf-u-w-50',
|
||||
'data-testid': 'azure-tenant-id',
|
||||
type: 'text',
|
||||
label: 'Tenant GUID',
|
||||
|
|
@ -72,6 +73,7 @@ export default {
|
|||
{
|
||||
component: componentTypes.TEXT_FIELD,
|
||||
name: 'azure-subscription-id',
|
||||
className: 'pf-u-w-50',
|
||||
'data-testid': 'azure-subscription-id',
|
||||
type: 'text',
|
||||
label: 'Subscription GUID',
|
||||
|
|
@ -90,6 +92,7 @@ export default {
|
|||
{
|
||||
component: componentTypes.TEXT_FIELD,
|
||||
name: 'azure-resource-group',
|
||||
className: 'pf-u-w-50',
|
||||
'data-testid': 'azure-resource-group',
|
||||
type: 'text',
|
||||
label: 'Resource group',
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue