Skip to content

Commit 24aa71b

Browse files
authored
Kueue microcopy changes (opendatahub-io#4620)
1 parent 4e01d1f commit 24aa71b

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

frontend/src/__tests__/cypress/cypress/tests/mocked/hardwareProfiles/hardwareProfiles.cy.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -526,7 +526,7 @@ describe('Hardware Profile', () => {
526526
hardwareProfile.visit();
527527
const row = hardwareProfile.getRow('Test Hardware Profile With Queue');
528528
row.findExpandButton().click();
529-
row.findExpandableSection().contains('Local Queue').should('be.visible');
529+
row.findExpandableSection().contains('Local queue').should('be.visible');
530530
row.findExpandableSection().contains('test-queue').should('be.visible');
531531
row.findExpandableSection().contains('Workload priority').should('be.visible');
532532
row.findExpandableSection().contains('high').should('be.visible');

frontend/src/concepts/hardwareProfiles/HardwareProfileDetailsPopover.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -105,10 +105,10 @@ const HardwareProfileDetailsPopover: React.FC<HardwareProfileDetailsPopoverProps
105105
</StackItem>
106106
))}
107107
{localQueueName && (
108-
<StackItem>{renderSection('Local Queue', [localQueueName])}</StackItem>
108+
<StackItem>{renderSection('Local queue', [localQueueName])}</StackItem>
109109
)}
110110
{priorityClass && (
111-
<StackItem>{renderSection('Workload Priority', [priorityClass])}</StackItem>
111+
<StackItem>{renderSection('Workload priority', [priorityClass])}</StackItem>
112112
)}
113113
{tolerations && tolerations.length > 0 && (
114114
<StackItem>

frontend/src/pages/hardwareProfiles/HardwareProfilesTableRow.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,7 @@ const HardwareProfilesTableRow: React.FC<HardwareProfilesTableRowProps> = ({
233233
)}
234234
{localQueueName && (
235235
<StackItem>
236-
<p className="pf-v6-u-font-weight-bold">Local Queue</p>
236+
<p className="pf-v6-u-font-weight-bold">Local queue</p>
237237
{localQueueName}
238238
</StackItem>
239239
)}

frontend/src/pages/hardwareProfiles/manage/ManageWorkloadStrategySection.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ const ManageWorkloadStrategySection: React.FC<ManageWorkloadStrategySectionProps
7373
id="node-strategy"
7474
name={ManageHardwareProfileSectionID.ALLOCATION_STRATEGY}
7575
data-testid="node-strategy-radio-input"
76-
label="Node Selectors and tolerations"
76+
label="Node selectors and tolerations"
7777
isChecked={schedulingType === SchedulingType.NODE}
7878
onChange={() => setSchedulingType(SchedulingType.NODE)}
7979
/>

0 commit comments

Comments
 (0)