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 5eeda60 commit bf17415Copy full SHA for bf17415
packages/bootstrap-vue-next/src/components/BTable/BTable.vue
@@ -387,7 +387,7 @@ const computedFields = computed<TableField<Items>[]>(() =>
387
const tableClasses = computed(() => ({
388
'b-table-busy': busyModel.value,
389
'b-table-selectable': props.selectable,
390
- 'user-select-none': props.selectable && isSelecting.value,
+ 'user-select-none': props.selectable && !props.noSelectOnClick && isSelecting.value,
391
'b-table-fixed': props.fixed,
392
'b-table-no-border-collapse': props.noBorderCollapse,
393
'b-table-no-sort-icon': props.noSortableIcon,
0 commit comments