Commit 158563f9 authored by Tamaki Fujino's avatar Tamaki Fujino Committed by Yas Naoi
Browse files

Issue #3275521 by TamakiFujino, yas, baldwinlouie, kumikoono: Fix the...

Issue #3275521 by TamakiFujino, yas, baldwinlouie, kumikoono: Fix the capitalization against Drupal user interface standards
parent d7387668
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -36,7 +36,7 @@ Resources:
      Tags:
      - Key: Name
        Value: !Sub
          - '${StackPrefix} Internet Gateway'
          - '${StackPrefix} Internet gateway'
          - StackPrefix: !Ref StackPrefix
  AttachGateway:
    Type: AWS::EC2::VPCGatewayAttachment
+1 −1
Original line number Diff line number Diff line
@@ -10,7 +10,7 @@ use Drupal\Core\Entity\EntityInterface;
use Drupal\Core\Session\AccountInterface;

/**
 * Access controller for the Cluster Role entity.
 * Access controller for the cluster role entity.
 *
 * @see \Drupal\cloud_budget\Entity\CloudCredit.
 */
+2 −2
Original line number Diff line number Diff line
@@ -5,10 +5,10 @@ const AWS_CLOUD_CARRIER_GATEWAY_TEMPLATE: EntityInfoTemplate = {
  entityName: 'carrier_gateway',
  entityRecords: [
    {
      panelName: 'Carrier Gateway',
      panelName: 'Carrier gateway',
      tableRecordList: [],
      keyValueRecords: [
        { labelName: 'Carrier Gateway ID', name: 'carrier_gateway_id', type: 'default' },
        { labelName: 'Carrier gateway ID', name: 'carrier_gateway_id', type: 'default' },
        { labelName: 'VPC ID', name: 'vpc_id', type: 'default' },
        { labelName: 'State', name: 'state', type: 'default' },
        { labelName: 'AWS account ID', name: 'account_id', type: 'default' },
+2 −2
Original line number Diff line number Diff line
@@ -5,10 +5,10 @@ const AWS_CLOUD_INTERNET_GATEWAY_TEMPLATE: EntityInfoTemplate = {
  entityName: 'internet_gateway',
  entityRecords: [
    {
      panelName: 'Internet Gateway',
      panelName: 'Internet gateway',
      tableRecordList: [],
      keyValueRecords: [
        { labelName: 'Internet Gateway ID', name: 'internet_gateway_id', type: 'default' },
        { labelName: 'Internet gateway ID', name: 'internet_gateway_id', type: 'default' },
        { labelName: 'VPC ID', name: 'vpc_id', type: 'default' },
        { labelName: 'State', name: 'state', type: 'default' },
        { labelName: 'AWS account ID', name: 'account_id', type: 'default' },
+1 −1
Original line number Diff line number Diff line
@@ -14,7 +14,7 @@ const COLUMN_RULES: EntityColumn[] = [
  { labelName: 'Peering Status', 'name': 'peering_status', type: 'default' },
  { labelName: 'Group User ID', 'name': 'user_id', type: 'default' },
  { labelName: 'VPC ID', 'name': 'vpc_id', type: 'default' },
  { labelName: 'Peering Connection ID', 'name': 'peering_connection_id', type: 'default' },
  { labelName: 'Peering connection ID', 'name': 'peering_connection_id', type: 'default' },
  { labelName: 'Description', 'name': 'description', type: 'default' },
];

Loading