@truedat/auth 4.51.4 → 4.51.6

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/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # Changelog
2
2
 
3
+ ## [4.51.5] 2022-09-19
4
+
5
+ ### Fixed
6
+
7
+ - [TD-4794] set dashboard domains on load
8
+
3
9
  ## [4.51.4] 2022-09-16
4
10
 
5
11
  ### Added
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@truedat/auth",
3
- "version": "4.51.4",
3
+ "version": "4.51.6",
4
4
  "description": "Truedat Web Auth",
5
5
  "sideEffects": false,
6
6
  "jsnext:main": "src/index.js",
@@ -34,7 +34,7 @@
34
34
  "@testing-library/jest-dom": "^5.16.4",
35
35
  "@testing-library/react": "^12.0.0",
36
36
  "@testing-library/user-event": "^13.2.1",
37
- "@truedat/test": "4.51.4",
37
+ "@truedat/test": "4.51.6",
38
38
  "babel-jest": "^28.1.0",
39
39
  "babel-plugin-dynamic-import-node": "^2.3.3",
40
40
  "babel-plugin-lodash": "^3.3.4",
@@ -87,7 +87,7 @@
87
87
  ]
88
88
  },
89
89
  "dependencies": {
90
- "@truedat/core": "4.51.4",
90
+ "@truedat/core": "4.51.6",
91
91
  "auth0-js": "^9.12.2",
92
92
  "immutable": "^4.0.0-rc.12",
93
93
  "jwt-decode": "^2.2.0",
@@ -109,5 +109,5 @@
109
109
  "react-dom": ">= 16.8.6 < 17",
110
110
  "semantic-ui-react": ">= 0.88.2 < 2.1"
111
111
  },
112
- "gitHead": "d3e3af905c2330f5e4aaeeefc3549acaa19575f7"
112
+ "gitHead": "8627aba1733d3b6b34cfd34092a6e58b7f766635"
113
113
  }
@@ -18,6 +18,7 @@ export const UserDomainsFilter = ({
18
18
  const handleDomainsLoaded = ({ domains }) => {
19
19
  const domainIds = _.map(({ id }) => _.toInteger(id))(domains);
20
20
  setDomainIds(domainIds);
21
+ setDashboardDomains(domainIds);
21
22
  };
22
23
 
23
24
  const onClick = (_e) => {