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.
:key
1 parent 2012d07 commit c7cb16fCopy full SHA for c7cb16f
src/components/table/helpers/mixin-tbody-row.js
@@ -334,7 +334,7 @@ export default {
334
$rows.push(
335
// We don't use `BTr` here as we dont need the extra functionality
336
h('tr', {
337
- key: `__b-table-details-${rowIndex}-stripe__`,
+ key: `__b-table-details-stripe__${rowKey}`,
338
staticClass: 'd-none',
339
attrs: { 'aria-hidden': 'true', role: 'presentation' }
340
})
@@ -346,7 +346,7 @@ export default {
346
h(
347
BTr,
348
{
349
- key: `__b-table-details-${rowIndex}__`,
+ key: `__b-table-details__${rowKey}`,
350
staticClass: 'b-table-details',
351
class: [
352
isFunction(this.tbodyTrClass)
0 commit comments