@rh-support/troubleshoot 2.6.332 → 2.6.333
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/lib/esm/components/CaseInformation/CaseLabels.d.ts.map +1 -1
- package/lib/esm/components/CaseInformation/CaseLabels.js +2 -1
- package/lib/esm/components/CaseManagement/CaseLabelsCreate.d.ts.map +1 -1
- package/lib/esm/components/CaseManagement/CaseLabelsCreate.js +2 -1
- package/package.json +5 -5
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"CaseLabels.d.ts","sourceRoot":"","sources":["../../../../src/components/CaseInformation/CaseLabels.tsx"],"names":[],"mappings":"AAaA,OAAO,KAAoC,MAAM,OAAO,CAAC;
|
|
1
|
+
{"version":3,"file":"CaseLabels.d.ts","sourceRoot":"","sources":["../../../../src/components/CaseInformation/CaseLabels.tsx"],"names":[],"mappings":"AAaA,OAAO,KAAoC,MAAM,OAAO,CAAC;AAWzD,MAAM,CAAC,OAAO,UAAU,UAAU,sBA6KjC"}
|
|
@@ -13,6 +13,7 @@ import { GlobalMetadataStateContext, useCanEditCase } from '@rh-support/react-co
|
|
|
13
13
|
import isEqual from 'lodash/isEqual';
|
|
14
14
|
import React, { useContext, useState } from 'react';
|
|
15
15
|
import { Trans, useTranslation } from 'react-i18next';
|
|
16
|
+
import { Link } from 'react-router-dom';
|
|
16
17
|
import { useCaseSelector } from '../../context/CaseContext';
|
|
17
18
|
import { useCaseLabelLinks } from '../../hooks/useCaseLabelLinkMutations';
|
|
18
19
|
const NUM_VISIBLE_LABELS = 3;
|
|
@@ -90,7 +91,7 @@ export default function CaseLabels() {
|
|
|
90
91
|
React.createElement("strong", null, "No labels available:"),
|
|
91
92
|
" You haven't created any labels yet.",
|
|
92
93
|
' ',
|
|
93
|
-
React.createElement(
|
|
94
|
+
React.createElement(Link, { to: "/manage/case-labels", style: { textDecoration: 'none' }, onClick: () => window.scrollTo(0, 0) }, "Create a label"),
|
|
94
95
|
' ',
|
|
95
96
|
"to start organizing your cases.")) : (React.createElement(Trans, null,
|
|
96
97
|
React.createElement("strong", null, "No labels available:"),
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"CaseLabelsCreate.d.ts","sourceRoot":"","sources":["../../../../src/components/CaseManagement/CaseLabelsCreate.tsx"],"names":[],"mappings":"AAmBA,OAAO,KAA4D,MAAM,OAAO,CAAC;
|
|
1
|
+
{"version":3,"file":"CaseLabelsCreate.d.ts","sourceRoot":"","sources":["../../../../src/components/CaseManagement/CaseLabelsCreate.tsx"],"names":[],"mappings":"AAmBA,OAAO,KAA4D,MAAM,OAAO,CAAC;AAYjF,wFAAwF;AACxF,MAAM,CAAC,OAAO,UAAU,gBAAgB,sBAgLvC"}
|
|
@@ -14,6 +14,7 @@ import { GET_CASE_LABELS, } from '@rh-support/utils';
|
|
|
14
14
|
import isEqual from 'lodash/isEqual';
|
|
15
15
|
import React, { useCallback, useContext, useEffect, useState } from 'react';
|
|
16
16
|
import { Trans, useTranslation } from 'react-i18next';
|
|
17
|
+
import { Link } from 'react-router-dom';
|
|
17
18
|
import { useCaseDispatch, useCaseSelector } from '../../context/CaseContext';
|
|
18
19
|
import { setCaseState } from '../../reducers/CaseReducer';
|
|
19
20
|
const NUM_VISIBLE_LABELS = 3;
|
|
@@ -100,7 +101,7 @@ export default function CaseLabelsCreate() {
|
|
|
100
101
|
React.createElement("strong", null, "No labels available:"),
|
|
101
102
|
" You haven't created any labels yet.",
|
|
102
103
|
' ',
|
|
103
|
-
React.createElement(
|
|
104
|
+
React.createElement(Link, { to: "/manage/case-labels", style: { textDecoration: 'none' }, onClick: () => window.scrollTo(0, 0) }, "Create a label"),
|
|
104
105
|
' ',
|
|
105
106
|
"to start organizing your cases.")) : (React.createElement(Trans, null,
|
|
106
107
|
React.createElement("strong", null, "No labels available:"),
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rh-support/troubleshoot",
|
|
3
|
-
"version": "2.6.
|
|
3
|
+
"version": "2.6.333",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public",
|
|
6
6
|
"registry": "https://registry.npmjs.org"
|
|
@@ -52,10 +52,10 @@
|
|
|
52
52
|
"@progress/kendo-licensing": "1.3.5",
|
|
53
53
|
"@progress/kendo-react-pdf": "^5.16.0",
|
|
54
54
|
"@redux-devtools/extension": "^3.3.0",
|
|
55
|
-
"@rh-support/components": "2.5.
|
|
56
|
-
"@rh-support/react-context": "2.5.
|
|
55
|
+
"@rh-support/components": "2.5.206",
|
|
56
|
+
"@rh-support/react-context": "2.5.301",
|
|
57
57
|
"@rh-support/types": "2.0.26",
|
|
58
|
-
"@rh-support/user-permissions": "2.5.
|
|
58
|
+
"@rh-support/user-permissions": "2.5.153",
|
|
59
59
|
"@rh-support/utils": "2.5.134",
|
|
60
60
|
"@types/react-redux": "^7.1.33",
|
|
61
61
|
"@types/redux": "^3.6.0",
|
|
@@ -128,5 +128,5 @@
|
|
|
128
128
|
"defaults and supports es6-module",
|
|
129
129
|
"maintained node versions"
|
|
130
130
|
],
|
|
131
|
-
"gitHead": "
|
|
131
|
+
"gitHead": "88d89bff33ac253421a7d05cb12f9d36212b2b4a"
|
|
132
132
|
}
|