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 67a1db9 commit ce9c577Copy full SHA for ce9c577
src/components/Row.vue
@@ -168,7 +168,7 @@
168
if (has(column,"slot_name")) {
169
return column.slot_name;
170
}
171
- return column.name.replace('.','_');
+ return column.name.replace(/\./g,'_');
172
173
},
174
computed: {
src/components/VueBootstrap4Table.vue
@@ -840,7 +840,7 @@ export default {
840
841
842
843
844
845
// row method ends here
846
resetSort() {
0 commit comments