Skip to content

Commit ea3936d

Browse files
Address PR review feedback: Fix capitalization and formatting issues
Co-authored-by: rita-gorokhod <60586879+rita-gorokhod@users.noreply.github.com>
1 parent 9c1587e commit ea3936d

27 files changed

Lines changed: 39 additions & 39 deletions

File tree

packages/blocks/anodot/src/lib/api-filters/virtual-tags-property.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,19 +18,19 @@ export function virtualTagsProperty() {
1818

1919
return {
2020
uuid: Property.LongText({
21-
displayName: '(virtual Tag) Uuid',
21+
displayName: '(Virtual Tag) UUID',
2222
description: 'UUID of the virtual tag to filter by',
2323
required: true,
2424
}),
2525

2626
eq: Property.Array({
27-
displayName: '(virtual Tag) Equal Values',
27+
displayName: '(Virtual Tag) Equal Values',
2828
description: 'List of values ​​to be checked for equality',
2929
required: false,
3030
}),
3131

3232
like: Property.Array({
33-
displayName: '(virtual Tag) Like Values',
33+
displayName: '(Virtual Tag) Like Values',
3434
description: 'List of values ​​​​to check if they are like',
3535
required: false,
3636
}),

packages/blocks/anodot/src/lib/get-recommendations-action-custom.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ export const getRecommendationsCustomAction = createAction({
2929
auth: anadotAuth,
3030
name: 'get_recommendations',
3131
description: 'Get custom Umbrella recommendations',
32-
displayName: 'Get Recommendations (custom Settings)',
32+
displayName: 'Get Recommendations (Custom Filters)',
3333
isWriteAction: false,
3434
props: {
3535
accounts: accountProperty(),

packages/blocks/archera/src/lib/actions/get-commitment-inventory.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ export const getCommitmentsInventoryAction = createAction({
4141
required: false,
4242
}),
4343
orderBy: Property.StaticDropdown({
44-
displayName: 'Order by',
44+
displayName: 'Order By',
4545
description: 'Field to order results by',
4646
required: false,
4747
options: {

packages/blocks/aws/src/lib/actions/ebs/ebs-modify-volume-action.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -65,15 +65,15 @@ export const ebsModifyVolumeAction = createAction({
6565
}
6666
return {
6767
newVolumeSize: Property.Number({
68-
displayName: 'New Volume Size (gb)',
68+
displayName: 'New Volume Size (GB)',
6969
required: false,
7070
validators: [Validators.minValue(1), Validators.maxValue(70369)], // max size is 64 TiB
7171
}),
7272
};
7373
},
7474
}),
7575
changeVolumeIops: Property.Checkbox({
76-
displayName: 'Change Volume Iops',
76+
displayName: 'Change Volume IOPS',
7777
required: false,
7878
}),
7979
newVolumeIops: Property.DynamicProperties({
@@ -86,7 +86,7 @@ export const ebsModifyVolumeAction = createAction({
8686
}
8787
return {
8888
newVolumeIops: Property.Number({
89-
displayName: 'New Volume Iops',
89+
displayName: 'New Volume IOPS',
9090
required: false,
9191
validators: [Validators.minValue(100), Validators.maxValue(256000)],
9292
}),
@@ -107,7 +107,7 @@ export const ebsModifyVolumeAction = createAction({
107107
}
108108
return {
109109
newVolumeThroughput: Property.Number({
110-
displayName: 'New Volume Throughput (mb/s)',
110+
displayName: 'New Volume Throughput (MB/s)',
111111
required: false,
112112
validators: [Validators.minValue(128), Validators.maxValue(1000)],
113113
}),

packages/blocks/aws/src/lib/actions/ec2/ec2-modify-instance-action.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ function getPropertyWithAttributeName(attributeName: string) {
139139
}
140140
case 'EnaSupport': {
141141
return Property.Checkbox({
142-
displayName: 'Enable Ena Support',
142+
displayName: 'Enable ENA Support',
143143
description:
144144
'Set to true to enable enhanced networking with ENA for the instance',
145145
required: true,

packages/blocks/cloudability/src/lib/actions/get-recommendations-action.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ export const getRecommendationsAction = createAction({
2323
duration: Property.StaticDropdown({
2424
displayName: 'Look-Back Period',
2525
description:
26-
'The look back period in days, used for calculating the recommendations',
26+
'The look back period in days used for calculating the recommendations',
2727
required: true,
2828
defaultValue: Duration.TenDay,
2929
options: {

packages/blocks/cloudfix/src/lib/common/auth.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ export const cloudfixAuth = BlockAuth.CustomAuth({
2323
}),
2424
apiKey: Property.SecretText({
2525
required: true,
26-
displayName: 'Api Token',
26+
displayName: 'API Token',
2727
description: 'The API token to use to connect to CloudFix',
2828
}),
2929
},

packages/blocks/cloudformation/src/lib/get/get-stack.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import { getCloudFormationTemplate } from '../get-template';
1010
export const getStack = createAction({
1111
auth: amazonAuth,
1212
name: 'get_stack_template',
13-
displayName: 'Get Cloudformation Template',
13+
displayName: 'Get CloudFormation Template',
1414
description:
1515
'Get the CloudFormation stack template that matches the given arn',
1616
isWriteAction: false,

packages/blocks/cloudformation/src/lib/modify/delete-resource-from-template.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ export const deleteResourceFromTemplate = createAction({
1111
isWriteAction: true,
1212
props: {
1313
template: Property.LongText({
14-
displayName: 'Cloudformation Template',
14+
displayName: 'CloudFormation Template',
1515
required: true,
1616
}),
1717

packages/blocks/cloudformation/src/lib/modify/modify-template.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ export const modifyTemplate = createAction({
1313
isWriteAction: true,
1414
props: {
1515
template: Property.LongText({
16-
displayName: 'Cloudformation Template',
16+
displayName: 'CloudFormation Template',
1717
required: true,
1818
}),
1919

0 commit comments

Comments
 (0)