File tree Expand file tree Collapse file tree
packages/plugins/src/plugins Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -653,7 +653,9 @@ function updatePanelStatus(): void {
653653 if ( settings . autoResolution ) {
654654 const shown = String ( effectiveResolution ( ) ) ;
655655 const resolution = panelContainer ?. querySelector < HTMLInputElement > ( "[data-dggal-resolution]" ) ;
656- const resolutionValue = panelContainer ?. querySelector < HTMLElement > ( "[data-dggal-resolution-value]" ) ;
656+ const resolutionValue = panelContainer ?. querySelector < HTMLElement > (
657+ "[data-dggal-resolution-value]" ,
658+ ) ;
657659 if ( resolution ) {
658660 resolution . value = shown ;
659661 resolution . title = shown ;
Original file line number Diff line number Diff line change @@ -877,7 +877,9 @@ function updatePanelStatus(): void {
877877 if ( settings . autoResolution ) {
878878 const shown = String ( effectiveResolution ( ) ) ;
879879 const resolution = panelContainer ?. querySelector < HTMLInputElement > ( "[data-dggrid-resolution]" ) ;
880- const resolutionValue = panelContainer ?. querySelector < HTMLElement > ( "[data-dggrid-resolution-value]" ) ;
880+ const resolutionValue = panelContainer ?. querySelector < HTMLElement > (
881+ "[data-dggrid-resolution-value]" ,
882+ ) ;
881883 if ( resolution ) {
882884 resolution . value = shown ;
883885 resolution . title = shown ;
You can’t perform that action at this time.
0 commit comments