Table Polaris
Scroll X
:class="[addSrcolTable() ? 'Polaris-IndexTable__Table--scrolling' : '']"
isIframe: state => state.isIframe
widthPage: state => state.widthPage,
addSrcolTable(){
if(this.isIframe){
if(this.widthPage <= 1270 || (this.widthPage <= 1515 && !this.currentProductId)){
return true;
}
}else{
if(this.widthPage <= 1660 || (this.widthPage <= 1792 && !this.currentProductId)){
return true;
}
}
return false;
},
Last updated
Was this helpful?