Skip to content

Commit 1f755b8

Browse files
committed
Rebuilding the prod
1 parent 058e4c2 commit 1f755b8

5 files changed

+7
-7
lines changed

dist/react-bootstrap-table.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8886,7 +8886,7 @@ return /******/ (function(modules) { // webpackBootstrap
88868886
var customStyle = _util2.default.isFunction(customStyleWithNav) ? customStyleWithNav(fieldValue, row) : customStyleWithNav;
88878887
style = _extends({}, style, customStyle);
88888888
} else {
8889-
className = className + ' default-focus-cell';
8889+
className = '' + className;
88908890
}
88918891
}
88928892

dist/react-bootstrap-table.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/react-bootstrap-table.min.js

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/TableEditColumn.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -390,7 +390,7 @@ var TableEditColumn = function (_Component) {
390390
var customStyle = _util2.default.isFunction(customStyleWithNav) ? customStyleWithNav(fieldValue, row) : customStyleWithNav;
391391
style = _extends({}, style, customStyle);
392392
} else {
393-
className = className + ' default-focus-cell';
393+
className = '' + className;
394394
}
395395
}
396396

src/TableEditColumn.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,7 @@ class TableEditColumn extends Component {
240240
...customStyle
241241
};
242242
} else {
243-
className = `${className} default-focus-cell`;
243+
className = `${className}`;
244244
}
245245
}
246246

0 commit comments

Comments
 (0)