@copart/ops-tool-kit 1.12.0-alpha.13 → 1.12.0-alpha.14
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/ops-tool-kit.js +3 -3
- package/dist/ops-tool-kit.js.map +1 -1
- package/package.json +1 -1
package/dist/ops-tool-kit.js
CHANGED
|
@@ -32,7 +32,7 @@ var React__namespace = /*#__PURE__*/_interopNamespace(React);
|
|
|
32
32
|
var ReactDOM__default = /*#__PURE__*/_interopDefaultLegacy(ReactDOM);
|
|
33
33
|
|
|
34
34
|
const name$r = "@copart/ops-tool-kit";
|
|
35
|
-
const version$7 = "1.12.0-alpha.
|
|
35
|
+
const version$7 = "1.12.0-alpha.14";
|
|
36
36
|
const main$1 = "dist/ops-tool-kit.js";
|
|
37
37
|
const style = "dist/ops-tool-kit.css";
|
|
38
38
|
const files = [
|
|
@@ -5412,8 +5412,8 @@ var findAppData = function findAppData() {
|
|
|
5412
5412
|
var tiles = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : [];
|
|
5413
5413
|
var tileOverrides = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : [];
|
|
5414
5414
|
var matchingTiles = [];
|
|
5415
|
-
matchingTiles.concat(tileOverrides.filter(tileFilter));
|
|
5416
|
-
matchingTiles.concat(tiles.filter(tileFilter));
|
|
5415
|
+
matchingTiles = matchingTiles.concat(tileOverrides.filter(tileFilter));
|
|
5416
|
+
matchingTiles = matchingTiles.concat(tiles.filter(tileFilter));
|
|
5417
5417
|
if (matchingTiles.length > 1) {
|
|
5418
5418
|
var currentLocation = window.location.pathname;
|
|
5419
5419
|
return matchingTiles.find(function (tile) {
|