Skip to content

Commit 32a308d

Browse files
committed
header-bottom -> hub-header-bottom
1 parent 05a3593 commit 32a308d

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

src/components/headers/base-header.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ export class BaseHeader extends React.Component<IProps> {
5252
{versionControl || null}
5353

5454
{children ? (
55-
<div className='header-bottom'>{children}</div>
55+
<div className='hub-header-bottom'>{children}</div>
5656
) : (
5757
<div className='placeholder' />
5858
)}

src/components/headers/header.scss

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ $breakpoint-md: 1000px;
4646
padding-bottom: 10px;
4747
}
4848

49-
.header-bottom {
49+
.hub-header-bottom {
5050
padding-top: 10px;
5151
}
5252

test/cypress/e2e/insights/namespace_edit.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ describe('Edit a namespace', () => {
100100
);
101101
cy.get('#description').clear().type('A namespace description');
102102
saveButton().click();
103-
cy.get('.header-bottom').should('contain', 'A namespace description');
103+
cy.get('.hub-header-bottom').should('contain', 'A namespace description');
104104
});
105105

106106
it('tests the Links field', () => {

test/cypress/e2e/namespaces/namespace_edit.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ describe('Edit a namespace', () => {
9999
);
100100
cy.get('#description').clear().type('A namespace description');
101101
saveButton().click();
102-
cy.get('.header-bottom').should('contain', 'A namespace description');
102+
cy.get('.hub-header-bottom').should('contain', 'A namespace description');
103103
});
104104

105105
it('tests the Links field', () => {

test/cypress/e2e/repo/container-signing.js

+5-5
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ describe('Container Signing', () => {
5252
cy.login();
5353
cy.visit(`${uiPrefix}containers/remote1`);
5454
cy.contains('.column-section', 'remote1');
55-
cy.contains('.header-bottom', 'Unsigned', {
55+
cy.contains('.hub-header-bottom', 'Unsigned', {
5656
timeout: 10000,
5757
});
5858

@@ -61,7 +61,7 @@ describe('Container Signing', () => {
6161
cy.get('button[aria-label="Actions"]').click();
6262
cy.contains('.pf-c-dropdown ul li a', 'Sign').click();
6363
cy.contains('Signing started for container "remote1');
64-
cy.contains('.header-bottom', 'Signed', {
64+
cy.contains('.hub-header-bottom', 'Signed', {
6565
timeout: 30000,
6666
});
6767
});
@@ -70,7 +70,7 @@ describe('Container Signing', () => {
7070
cy.login();
7171
cy.visit(`${uiPrefix}containers/remote2`);
7272
cy.contains('.column-section', 'remote2');
73-
cy.contains('.header-bottom', 'Unsigned', {
73+
cy.contains('.hub-header-bottom', 'Unsigned', {
7474
timeout: 10000,
7575
});
7676

@@ -83,14 +83,14 @@ describe('Container Signing', () => {
8383
cy.login();
8484
cy.visit(`${uiPrefix}containers/local1`);
8585
cy.contains('.column-section', 'local1');
86-
cy.contains('.header-bottom', 'Unsigned', {
86+
cy.contains('.hub-header-bottom', 'Unsigned', {
8787
timeout: 10000,
8888
});
8989

9090
cy.get('button[aria-label="Actions"]').click();
9191
cy.contains('.pf-c-dropdown ul li a', 'Sign').click();
9292
cy.contains('Signing started for container "local1');
93-
cy.contains('.header-bottom', 'Signed', {
93+
cy.contains('.hub-header-bottom', 'Signed', {
9494
timeout: 30000,
9595
});
9696
});

0 commit comments

Comments
 (0)