Skip to content

Commit af105a6

Browse files
authored
Merge branch 'main' into astandrik.vdisks-in-2-rows-730
2 parents aec3f14 + 6be903d commit af105a6

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

playwright.config.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,9 @@ const config: PlaywrightTestConfig = {
2424
baseURL: baseUrl || 'http://localhost:3000/',
2525
testIdAttribute: 'data-qa',
2626
trace: 'on-first-retry',
27-
video: 'retain-on-failure',
28-
screenshot: 'only-on-failure',
27+
// Always record video and take screenshots on main branch, otherwise only on failure
28+
video: process.env.GITHUB_REF === 'refs/heads/main' ? 'on' : 'retain-on-failure',
29+
screenshot: process.env.GITHUB_REF === 'refs/heads/main' ? 'on' : 'only-on-failure',
2930
},
3031
projects: [
3132
{

src/components/Table/Table.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838

3939
background-color: var(--g-color-base-background);
4040
@include mixins.text-subheader-2();
41-
&_align_right {
41+
:is(&_align_right) {
4242
#{$block}__table-header-content {
4343
justify-content: flex-end;
4444

src/containers/Tenant/Schema/SchemaViewer/columns.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ const nameColumn: SchemaColumn = {
3131
get header() {
3232
return i18n('column-title.name');
3333
},
34-
width: 100,
34+
width: 120,
3535
render: ({row}) => row.name,
3636
};
3737
const typeColumn: SchemaColumn = {
@@ -104,7 +104,7 @@ const compressionColumn: SchemaColumn = {
104104
get header() {
105105
return i18n('column-title.compression');
106106
},
107-
width: 100,
107+
width: 130,
108108
render: ({row}) => row.columnCodec,
109109
};
110110

0 commit comments

Comments
 (0)