@truedat/core 8.10.3 → 8.10.4

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@truedat/core",
3
- "version": "8.10.3",
3
+ "version": "8.10.4",
4
4
  "description": "Truedat Web Core",
5
5
  "sideEffects": [
6
6
  "**/*.css",
@@ -57,7 +57,7 @@
57
57
  "@testing-library/jest-dom": "^6.6.3",
58
58
  "@testing-library/react": "^16.3.0",
59
59
  "@testing-library/user-event": "^14.6.1",
60
- "@truedat/test": "8.10.3",
60
+ "@truedat/test": "8.10.4",
61
61
  "identity-obj-proxy": "^3.0.0",
62
62
  "jest": "^29.7.0",
63
63
  "redux-saga-test-plan": "^4.0.6"
@@ -98,5 +98,5 @@
98
98
  "swr": "^2.3.3",
99
99
  "turndown": "^7.2.2"
100
100
  },
101
- "gitHead": "39f6a32de360216dbd10f5987e6a91f53bdd5a8e"
101
+ "gitHead": "fe4fda03b2b73d26f644219d806dcc45767a3c7a"
102
102
  }
@@ -95,7 +95,7 @@ export const OptionGroup = ({
95
95
  key: i,
96
96
  children: (
97
97
  <>
98
- <Dropdown.Divider />
98
+ {i > 0 && <Dropdown.Divider />}
99
99
  <Dropdown.Header icon={option.icon} content={option.label} />
100
100
  </>
101
101
  ),
package/src/routes.js CHANGED
@@ -77,7 +77,9 @@ export const DOMAIN_SUBDOMAINS = "/domains/:id/subdomains";
77
77
  export const ELASTICINDEXES = "/search/elasticIndexes";
78
78
  export const EXECUTION_GROUP = "/executionGroups/:id";
79
79
  export const EXECUTION_GROUPS = "/executionGroups";
80
+ export const FUNCTION = "/functions/:id";
80
81
  export const FUNCTIONS = "/functions";
82
+ export const FUNCTIONS_NEW = "/functions/new";
81
83
  export const GRANT_APPROVAL_RULE = "/grantApproveRules/:id";
82
84
  export const GRANT_APPROVAL_RULE_NEW = "/grantApproveRules/new";
83
85
  export const GRANT_APPROVAL_RULE_EDIT = "/grantApproveRules/:id/edit";