Skip to content

Commit

Permalink
Rebuilding the prod
Browse files Browse the repository at this point in the history
  • Loading branch information
DmitryMK committed Jan 19, 2019
1 parent 058e4c2 commit 1f755b8
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion dist/react-bootstrap-table.js
Original file line number Diff line number Diff line change
Expand Up @@ -8886,7 +8886,7 @@ return /******/ (function(modules) { // webpackBootstrap
var customStyle = _util2.default.isFunction(customStyleWithNav) ? customStyleWithNav(fieldValue, row) : customStyleWithNav;
style = _extends({}, style, customStyle);
} else {
className = className + ' default-focus-cell';
className = '' + className;
}
}

Expand Down
2 changes: 1 addition & 1 deletion dist/react-bootstrap-table.js.map

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions dist/react-bootstrap-table.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion lib/TableEditColumn.js
Original file line number Diff line number Diff line change
Expand Up @@ -390,7 +390,7 @@ var TableEditColumn = function (_Component) {
var customStyle = _util2.default.isFunction(customStyleWithNav) ? customStyleWithNav(fieldValue, row) : customStyleWithNav;
style = _extends({}, style, customStyle);
} else {
className = className + ' default-focus-cell';
className = '' + className;
}
}

Expand Down
2 changes: 1 addition & 1 deletion src/TableEditColumn.js
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ class TableEditColumn extends Component {
...customStyle
};
} else {
className = `${className} default-focus-cell`;
className = `${className}`;
}
}

Expand Down

0 comments on commit 1f755b8

Please sign in to comment.