File tree Expand file tree Collapse file tree 3 files changed +6
-5
lines changed
containers/Tenant/Schema/SchemaViewer Expand file tree Collapse file tree 3 files changed +6
-5
lines changed Original file line number Diff line number Diff 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 {
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff 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} ;
3737const 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
You can’t perform that action at this time.
0 commit comments