Skip to content

Commit

Permalink
fix(plugin): the RowMove plugin cell should be selectable (#1408)
Browse files Browse the repository at this point in the history
- cell that aren't selectable are not styled with bg-color when selecting full row
  • Loading branch information
ghiscoding committed Mar 2, 2024
1 parent 855151b commit 8c01a13
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
Expand Up @@ -152,7 +152,6 @@ describe('SlickRowMoveManager Plugin', () => {
behavior: 'selectAndMove',
reorderable: false,
resizable: false,
selectable: false,
width: 40,
};

Expand Down Expand Up @@ -201,7 +200,6 @@ describe('SlickRowMoveManager Plugin', () => {
name: '',
reorderable: false,
resizable: false,
selectable: false,
width: 40,
});
});
Expand Down
1 change: 0 additions & 1 deletion packages/common/src/extensions/slickRowMoveManager.ts
Expand Up @@ -139,7 +139,6 @@ export class SlickRowMoveManager {
field: columnId,
reorderable: this._addonOptions.reorderable,
resizable: false,
selectable: false,
width: this._addonOptions.width || 40,
formatter: this.moveIconFormatter.bind(this),
};
Expand Down

0 comments on commit 8c01a13

Please sign in to comment.