Skip to content
Snippets Groups Projects

Issue #3380164: Fix the status message when creating an OpenStack security group in SPA

Merged Issue #3380164: Fix the status message when creating an OpenStack security group in SPA
Merged Ryo Yamashita requested to merge issue/cloud-3380164:3380164-fix-status-message into 6.x
2 files
+ 2
2
Compare changes
  • Side-by-side
  • Inline
Files
2
@@ -744,5 +744,5 @@ export const getEntityDataNameLabel = (entityData: EntityData | undefined): stri
export const getFormDataNameLabel = (formData: Record<string ,any>): string => {
// If the entity data is set and the attributes are set, return the name.
// Note: The entity name's key is 'name' or 'key_pair_name'.
return formData['name'] as string || formData['key_pair_name'] as string || '';
return formData['name'] as string || formData['group_name'] as string || formData['key_pair_name'] as string || '';
}
Loading