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.
2 parents eaab90e + d451a73 commit c351a51Copy full SHA for c351a51
src/BootstrapBlazor/Components/Table/Table.razor.js
@@ -811,10 +811,10 @@ const setCopyColumn = table => {
811
rows = table.body.querySelectorAll('table > tbody > tr')
812
}
813
else if (el.querySelector('.table-fixed-column')) {
814
- rows = el.querySelectorAll('.table-scroll > .overflow-auto > table > tbody > tr')
+ rows = el.querySelectorAll('.table-scroll > .overflow-auto > table > tbody > tr:not(.is-detail)')
815
816
else {
817
- rows = el.querySelectorAll('.table-scroll > table > tbody > tr')
+ rows = el.querySelectorAll('.table-scroll > table > tbody > tr:not(.is-detail)')
818
819
820
let content = ''
0 commit comments