We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 88191a0 commit fe09d9bCopy full SHA for fe09d9b
packages/resize-columns/src/js/ui-grid-column-resizer.js
@@ -119,6 +119,9 @@
119
if (position === 'left') {
120
// Get the column to the left of this one
121
var colIndex = renderContainer.visibleColumnCache.indexOf(col);
122
+ if(colIndex === 0){
123
+ return renderContainer.visibleColumnCache[0];
124
+ }
125
return renderContainer.visibleColumnCache[colIndex - 1 * rtlMultiplier];
126
} else {
127
return col;
0 commit comments