Skip to content

Commit

Permalink
Fixed #14667 - Table | Responsive Stack and add [scrollable]=true not…
Browse files Browse the repository at this point in the history
… working
  • Loading branch information
mehmetcetin01140 committed Jan 31, 2024
1 parent 239b86c commit feb4967
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/components/table/table.ts
Original file line number Diff line number Diff line change
Expand Up @@ -706,7 +706,7 @@ export class Table implements OnInit, AfterViewInit, AfterContentInit, Blockable
* The breakpoint to define the maximum width boundary when using stack responsive layout.
* @group Props
*/
@Input() breakpoint: string = '960px';
@Input() breakpoint: string = '640px';
/**
* Locale to be used in paginator formatting.
* @group Props
Expand Down Expand Up @@ -1167,7 +1167,7 @@ export class Table implements OnInit, AfterViewInit, AfterContentInit, Blockable
}
}

if (this.responsiveLayout === 'stack' && !this.scrollable) {
if (this.responsiveLayout === 'stack') {
this.createResponsiveStyle();
}

Expand Down

0 comments on commit feb4967

Please sign in to comment.