@plusscommunities/pluss-maintenance-web 1.1.7 → 1.1.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs.js +1 -2
- package/dist/index.esm.js +1 -2
- package/dist/index.umd.js +1 -2
- package/package.json +1 -1
- package/src/components/JobList.js +0 -1
package/dist/index.cjs.js
CHANGED
|
@@ -741,8 +741,7 @@ var JobList = /*#__PURE__*/function (_Component) {
|
|
|
741
741
|
});
|
|
742
742
|
|
|
743
743
|
_defineProperty__default['default'](_assertThisInitialized__default['default'](_this), "getSource", function () {
|
|
744
|
-
var source = _this.props.source;
|
|
745
|
-
console.log(source); // filter by time
|
|
744
|
+
var source = _this.props.source; // filter by time
|
|
746
745
|
|
|
747
746
|
if (_this.state.selectedTimeFilterStart && _this.state.selectedTimeFilterEnd) {
|
|
748
747
|
source = ___default['default'].filter(source, function (r) {
|
package/dist/index.esm.js
CHANGED
|
@@ -698,8 +698,7 @@ var JobList = /*#__PURE__*/function (_Component) {
|
|
|
698
698
|
});
|
|
699
699
|
|
|
700
700
|
_defineProperty(_assertThisInitialized(_this), "getSource", function () {
|
|
701
|
-
var source = _this.props.source;
|
|
702
|
-
console.log(source); // filter by time
|
|
701
|
+
var source = _this.props.source; // filter by time
|
|
703
702
|
|
|
704
703
|
if (_this.state.selectedTimeFilterStart && _this.state.selectedTimeFilterEnd) {
|
|
705
704
|
source = _.filter(source, function (r) {
|
package/dist/index.umd.js
CHANGED
|
@@ -722,8 +722,7 @@
|
|
|
722
722
|
});
|
|
723
723
|
|
|
724
724
|
_defineProperty__default['default'](_assertThisInitialized__default['default'](_this), "getSource", function () {
|
|
725
|
-
var source = _this.props.source;
|
|
726
|
-
console.log(source); // filter by time
|
|
725
|
+
var source = _this.props.source; // filter by time
|
|
727
726
|
|
|
728
727
|
if (_this.state.selectedTimeFilterStart && _this.state.selectedTimeFilterEnd) {
|
|
729
728
|
source = ___default['default'].filter(source, function (r) {
|
package/package.json
CHANGED