@rh-support/troubleshoot 2.2.103 → 2.2.105
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/CaseEditView/CaseOverview/index.d.ts.map +1 -1
- package/lib/esm/components/CaseEditView/CaseOverview/index.js +7 -2
- package/lib/esm/components/CaseInformation/Severity.d.ts.map +1 -1
- package/lib/esm/components/CaseInformation/Severity.js +5 -2
- package/lib/esm/components/CaseInformation/SupportLevel.d.ts.map +1 -1
- package/lib/esm/components/CaseInformation/SupportLevel.js +5 -2
- package/lib/esm/components/ProductSelector/NewProductDropdownSelector.js +1 -1
- package/lib/esm/components/SubmitCase/SubmitCase.d.ts.map +1 -1
- package/lib/esm/components/SubmitCase/SubmitCase.js +61 -7
- package/lib/esm/components/UpdateSeverityModal/UpdateSeverityModal.d.ts.map +1 -1
- package/lib/esm/components/UpdateSeverityModal/UpdateSeverityModal.js +38 -9
- package/lib/esm/reducers/CaseConstNTypes.d.ts +1 -0
- package/lib/esm/reducers/CaseConstNTypes.d.ts.map +1 -1
- package/lib/esm/reducers/CaseConstNTypes.js +1 -0
- package/lib/esm/reducers/CaseReducer.d.ts.map +1 -1
- package/lib/esm/reducers/CaseReducer.js +3 -2
- package/lib/esm/reducers/RouteConstNTypes.d.ts +1 -0
- package/lib/esm/reducers/RouteConstNTypes.d.ts.map +1 -1
- package/lib/esm/scss/_main.scss +0 -4
- package/package.json +2 -2
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/components/CaseEditView/CaseOverview/index.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/components/CaseEditView/CaseOverview/index.tsx"],"names":[],"mappings":"AA4BA,OAAO,KAAkD,MAAM,OAAO,CAAC;AA6BvE,UAAU,MAAM;IACZ,UAAU,EAAE,MAAM,CAAC;IACnB,OAAO,EAAE,KAAK,CAAC,gBAAgB,CAAC,cAAc,CAAC,CAAC;CACnD;AAED,MAAM,CAAC,OAAO,UAAU,YAAY,CAAC,KAAK,EAAE,MAAM,qBAwfjD"}
|
|
@@ -11,7 +11,7 @@ import { Alert, AlertVariant, Button, ButtonVariant, ExpandableSection, Label, M
|
|
|
11
11
|
import { ToastNotification, useConfirmation } from '@rh-support/components';
|
|
12
12
|
import { CloseCaseModal, fetchCaseSeverities, fetchCaseTypes, GlobalMetadataDispatchContext, GlobalMetadataStateContext, useCanEditCase, } from '@rh-support/react-context';
|
|
13
13
|
import { AbilityContext, CaseDetailsFields, resourceActions, resources } from '@rh-support/user-permissions';
|
|
14
|
-
import { haventLoadedMetadata, isOpenShiftOnlineProduct, toNewCaseTypeMapper, toNewCaseTypeSwitcher, } from '@rh-support/utils';
|
|
14
|
+
import { haventLoadedMetadata, isOpenShiftOnlineProduct, PreviousCaseTypes, toNewCaseTypeMapper, toNewCaseTypeSwitcher, } from '@rh-support/utils';
|
|
15
15
|
import isEqual from 'lodash/isEqual';
|
|
16
16
|
import React, { useContext, useEffect, useRef, useState } from 'react';
|
|
17
17
|
import { Trans, useTranslation } from 'react-i18next';
|
|
@@ -55,6 +55,7 @@ export default function CaseOverview(props) {
|
|
|
55
55
|
version: state.caseDetails.version,
|
|
56
56
|
status: state.caseDetails.status,
|
|
57
57
|
caseType: state.caseDetails.caseType,
|
|
58
|
+
caseSeverity: state.caseDetails.severity,
|
|
58
59
|
createdDate: state.caseDetails.createdDate,
|
|
59
60
|
createdById: state.caseDetails.createdById,
|
|
60
61
|
ownerId: state.caseDetails.ownerId,
|
|
@@ -114,7 +115,11 @@ export default function CaseOverview(props) {
|
|
|
114
115
|
return;
|
|
115
116
|
setTypeUpdating(caseOverviewDispatch, true);
|
|
116
117
|
try {
|
|
117
|
-
|
|
118
|
+
let newCaseDetails = { caseType: type };
|
|
119
|
+
if (type === PreviousCaseTypes.FEATURE_ENHANCEMENT) {
|
|
120
|
+
newCaseDetails = Object.assign(Object.assign({}, newCaseDetails), { fts: false });
|
|
121
|
+
}
|
|
122
|
+
yield updateCaseDetails(caseDispatch, props.caseNumber, newCaseDetails);
|
|
118
123
|
setTypeUpdating(caseOverviewDispatch, false);
|
|
119
124
|
ToastNotification.addSuccessMessage(t('Support type has been successfully updated'));
|
|
120
125
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Severity.d.ts","sourceRoot":"","sources":["../../../../src/components/CaseInformation/Severity.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,MAAM,yCAAyC,CAAC;AAMvE,OAAO,EAAE,gBAAgB,EAAW,MAAM,0BAA0B,CAAC;
|
|
1
|
+
{"version":3,"file":"Severity.d.ts","sourceRoot":"","sources":["../../../../src/components/CaseInformation/Severity.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,MAAM,yCAAyC,CAAC;AAMvE,OAAO,EAAE,gBAAgB,EAAW,MAAM,0BAA0B,CAAC;AAerE,OAAO,KAA0C,MAAM,OAAO,CAAC;AAW/D,UAAU,MAAO,SAAQ,gBAAgB;IACrC,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,gBAAgB,CAAC,EAAE,CAAC,WAAW,EAAE,OAAO,CAAC,YAAY,CAAC,KAAK,IAAI,CAAC;IAChE,oBAAoB,EAAE,OAAO,CAAC;CACjC;AASD,MAAM,WAAW,gBAAgB;IAC7B,QAAQ,EAAE,OAAO,CAAC;IAClB,IAAI,EAAE,MAAM,CAAC;IACb,KAAK,EAAE,MAAM,CAAC;IACd,cAAc,EAAE,MAAM,GAAG,GAAG,CAAC,OAAO,GAAG,GAAG,CAAC,OAAO,EAAE,CAAC;CACxD;AAED,iBAAS,QAAQ,CAAC,KAAK,EAAE,MAAM,qBA+R9B;kBA/RQ,QAAQ;;;AAiSjB,eAAe,QAAQ,CAAC"}
|
|
@@ -3,7 +3,7 @@ import QuestionCircleIcon from '@patternfly/react-icons/dist/js/icons/question-c
|
|
|
3
3
|
import WarningTriangleIcon from '@patternfly/react-icons/dist/js/icons/warning-triangle-icon';
|
|
4
4
|
import { Dropdown, ValueChangedIcon } from '@rh-support/components';
|
|
5
5
|
import { GlobalMetadataStateContext } from '@rh-support/react-context';
|
|
6
|
-
import { autoEnableFtsOnCaseViewEditPage, severitySort, showFtsOnCreateCasePage, toOption, toOptions, } from '@rh-support/utils';
|
|
6
|
+
import { autoEnableFtsOnCaseViewEditPage, PreviousCaseTypes, severitySort, showFtsOnCreateCasePage, toOption, toOptions, } from '@rh-support/utils';
|
|
7
7
|
import find from 'lodash/find';
|
|
8
8
|
import findLast from 'lodash/findLast';
|
|
9
9
|
import includes from 'lodash/includes';
|
|
@@ -27,7 +27,7 @@ const defaultProps = {
|
|
|
27
27
|
};
|
|
28
28
|
function Severity(props) {
|
|
29
29
|
const { t } = useTranslation();
|
|
30
|
-
const { product, version, caseNumber, severity, entitlementSla, ownersEntitlements, versionsDetails } = useCaseSelector((state) => ({
|
|
30
|
+
const { product, version, caseNumber, severity, entitlementSla, ownersEntitlements, versionsDetails, caseType } = useCaseSelector((state) => ({
|
|
31
31
|
product: state.caseDetails.product,
|
|
32
32
|
version: state.caseDetails.version,
|
|
33
33
|
caseNumber: state.caseDetails.caseNumber,
|
|
@@ -35,6 +35,7 @@ function Severity(props) {
|
|
|
35
35
|
entitlementSla: state.caseDetails.entitlementSla,
|
|
36
36
|
ownersEntitlements: state.ownersEntitlements,
|
|
37
37
|
versionsDetails: state.versionsDetails,
|
|
38
|
+
caseType: state.caseDetails.caseType,
|
|
38
39
|
}), isEqual);
|
|
39
40
|
const { globalMetadataState: { allCaseSeverities, allProducts }, } = useContext(GlobalMetadataStateContext);
|
|
40
41
|
const { isExportingPDF } = useContext(PDFContext);
|
|
@@ -44,6 +45,7 @@ function Severity(props) {
|
|
|
44
45
|
const [openUpdateSeverityModal, setOpenUpdateSeverityModal] = useState(false);
|
|
45
46
|
const caseDispatch = useCaseDispatch();
|
|
46
47
|
const isOnCaseDetailsPage = !isEmpty(caseNumber);
|
|
48
|
+
const isIdea = caseType === PreviousCaseTypes.FEATURE_ENHANCEMENT;
|
|
47
49
|
const updateState = (value) => {
|
|
48
50
|
const casePayload = {
|
|
49
51
|
severity: value,
|
|
@@ -52,6 +54,7 @@ function Severity(props) {
|
|
|
52
54
|
// .. change fts on sev change only while creating case or when we change to sev1
|
|
53
55
|
!isOnCaseDetailsPage && (casePayload.fts = showFtsOnCreateCasePage(entitlementSla, value));
|
|
54
56
|
isOnCaseDetailsPage && autoEnableFtsOnCaseViewEditPage(entitlementSla, value) && (casePayload.fts = true);
|
|
57
|
+
casePayload.fts = casePayload.fts && !isIdea;
|
|
55
58
|
if (isOnCaseDetailsPage) {
|
|
56
59
|
props.onSeverityChange && props.onSeverityChange(casePayload);
|
|
57
60
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SupportLevel.d.ts","sourceRoot":"","sources":["../../../../src/components/CaseInformation/SupportLevel.tsx"],"names":[],"mappings":"AAKA,OAAO,EAAE,gBAAgB,EAAE,MAAM,0BAA0B,CAAC;AAI5D,OAAO,KAA0C,MAAM,OAAO,CAAC;AAM/D,UAAU,MAAO,SAAQ,gBAAgB;CAAG;AAO5C,iBAAS,YAAY,CAAC,KAAK,EAAE,MAAM,
|
|
1
|
+
{"version":3,"file":"SupportLevel.d.ts","sourceRoot":"","sources":["../../../../src/components/CaseInformation/SupportLevel.tsx"],"names":[],"mappings":"AAKA,OAAO,EAAE,gBAAgB,EAAE,MAAM,0BAA0B,CAAC;AAI5D,OAAO,KAA0C,MAAM,OAAO,CAAC;AAM/D,UAAU,MAAO,SAAQ,gBAAgB;CAAG;AAO5C,iBAAS,YAAY,CAAC,KAAK,EAAE,MAAM,qBA+HlC;kBA/HQ,YAAY;;;AAiIrB,eAAe,YAAY,CAAC"}
|
|
@@ -2,7 +2,7 @@ import { Popover, PopoverPosition, ValidatedOptions } from '@patternfly/react-co
|
|
|
2
2
|
import { Select, SelectOption, SelectVariant } from '@patternfly/react-core/deprecated';
|
|
3
3
|
import QuestionCircleIcon from '@patternfly/react-icons/dist/js/icons/question-circle-icon';
|
|
4
4
|
import { GlobalMetadataStateContext } from '@rh-support/react-context';
|
|
5
|
-
import { showFtsOnCaseViewEditPage, showFtsOnCreateCasePage } from '@rh-support/utils';
|
|
5
|
+
import { PreviousCaseTypes, showFtsOnCaseViewEditPage, showFtsOnCreateCasePage } from '@rh-support/utils';
|
|
6
6
|
import isEmpty from 'lodash/isEmpty';
|
|
7
7
|
import isEqual from 'lodash/isEqual';
|
|
8
8
|
import React, { useContext, useEffect, useState } from 'react';
|
|
@@ -14,18 +14,20 @@ const defaultProps = {
|
|
|
14
14
|
className: '',
|
|
15
15
|
};
|
|
16
16
|
function SupportLevel(props) {
|
|
17
|
-
const { product, caseNumber, severity, entitlementSla, ownersEntitlements } = useCaseSelector((state) => ({
|
|
17
|
+
const { product, caseNumber, severity, entitlementSla, ownersEntitlements, caseType } = useCaseSelector((state) => ({
|
|
18
18
|
product: state.caseDetails.product,
|
|
19
19
|
caseNumber: state.caseDetails.caseNumber,
|
|
20
20
|
severity: state.caseDetails.severity,
|
|
21
21
|
entitlementSla: state.caseDetails.entitlementSla,
|
|
22
22
|
ownersEntitlements: state.ownersEntitlements,
|
|
23
|
+
caseType: state.caseDetails.caseType,
|
|
23
24
|
}), isEqual);
|
|
24
25
|
const caseDispatch = useCaseDispatch();
|
|
25
26
|
const { globalMetadataState: { allProducts }, } = useContext(GlobalMetadataStateContext);
|
|
26
27
|
const { t } = useTranslation();
|
|
27
28
|
const [isSupportLevelInValid, setIsSupportLevelInValid] = useState(false);
|
|
28
29
|
const [isOpen, setIsOpen] = useState(false);
|
|
30
|
+
const isIdea = caseType === PreviousCaseTypes.FEATURE_ENHANCEMENT;
|
|
29
31
|
const onToggle = (isOpen) => {
|
|
30
32
|
setIsOpen(isOpen);
|
|
31
33
|
};
|
|
@@ -38,6 +40,7 @@ function SupportLevel(props) {
|
|
|
38
40
|
casePayload.fts = caseNumber
|
|
39
41
|
? showFtsOnCaseViewEditPage(selected, severity)
|
|
40
42
|
: showFtsOnCreateCasePage(selected, severity);
|
|
43
|
+
casePayload.fts = casePayload.fts && !isIdea;
|
|
41
44
|
setIsSupportLevelInValid(isEmpty(selected));
|
|
42
45
|
onCaseDetailsChange(casePayload);
|
|
43
46
|
};
|
|
@@ -71,7 +71,7 @@ export const NewProductDropdownSelector = (props) => {
|
|
|
71
71
|
};
|
|
72
72
|
return (React.createElement("div", null,
|
|
73
73
|
React.createElement(Select, { variant: SelectVariant.typeahead, typeAheadAriaLabel: t('Search for or select a product'), onToggle: (_event, isOpen) => onToggle(isOpen), onSelect: onSelect, isOpen: isOpen, placeholderText: t('Search for or select a product'), "aria-labelledby": t('Product-selector'), onFilter: onFilter, selections: product, validated: isEmpty(product) && showValidationLocal ? 'error' : 'default', "data-tracking-id": "get-support-product-dropdown-selector" }, getOptions()),
|
|
74
|
-
!isSelectedProductSupportedForCustomer && (React.createElement("div", { className: "pf-v5-u-ml-xs pf-v5-u-mt-sm
|
|
74
|
+
!isSelectedProductSupportedForCustomer && (React.createElement("div", { className: "pf-v5-u-ml-xs pf-v5-u-mt-sm form-instructions" },
|
|
75
75
|
React.createElement(Trans, null, "Red Hat must confirm your subscription status before providing support."),
|
|
76
76
|
React.createElement("br", null),
|
|
77
77
|
React.createElement(Trans, null, "We'll contact you if we have question.")))));
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SubmitCase.d.ts","sourceRoot":"","sources":["../../../../src/components/SubmitCase/SubmitCase.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"SubmitCase.d.ts","sourceRoot":"","sources":["../../../../src/components/SubmitCase/SubmitCase.tsx"],"names":[],"mappings":"AAsBA,OAAO,KAA0C,MAAM,OAAO,CAAC;AAE/D,OAAO,EAAQ,mBAAmB,EAAe,MAAM,kBAAkB,CAAC;AAQ1E,OAAO,EAAE,eAAe,EAAE,MAAM,iCAAiC,CAAC;AAWlE,UAAU,MAAM;IACZ,UAAU,EAAE,mBAAmB,CAAC,eAAe,CAAC,CAAC;CACpD;AAED,MAAM,CAAC,OAAO,UAAU,UAAU,CAAC,KAAK,EAAE,MAAM,qBAyY/C"}
|
|
@@ -1,20 +1,21 @@
|
|
|
1
1
|
import { Env, publicApi } from '@cee-eng/hydrajs';
|
|
2
2
|
import { ActionList, ActionListItem, Button, Icon, Text, TextVariants, Tooltip } from '@patternfly/react-core';
|
|
3
3
|
import CheckCircleIcon from '@patternfly/react-icons/dist/js/icons/check-circle-icon';
|
|
4
|
-
import { AlertMessage, AlertType, useFetch } from '@rh-support/components';
|
|
4
|
+
import { AlertMessage, AlertType, formattedApiErrorMessage, SupportFeedbackForm, useFetch, } from '@rh-support/components';
|
|
5
5
|
import { GlobalMetadataStateContext, useGlobalStateContext } from '@rh-support/react-context';
|
|
6
|
-
import { getConfigField, getRedhatDotComHost, isSpecialSupportOfferingEnabled, PCM_CONFIG_FIELD_TYPE, PreviousCaseTypes, } from '@rh-support/utils';
|
|
6
|
+
import { getConfigField, getRedhatDotComHost, getUrlParsedParams, isSpecialSupportOfferingEnabled, PCM_CONFIG_FIELD_TYPE, PreviousCaseTypes, } from '@rh-support/utils';
|
|
7
7
|
import find from 'lodash/find';
|
|
8
8
|
import isEmpty from 'lodash/isEmpty';
|
|
9
9
|
import isEqual from 'lodash/isEqual';
|
|
10
10
|
import React, { useContext, useEffect, useState } from 'react';
|
|
11
11
|
import { Trans, useTranslation } from 'react-i18next';
|
|
12
|
-
import { Link } from 'react-router-dom';
|
|
13
|
-
import { useCaseSelector } from '../../context/CaseContext';
|
|
12
|
+
import { Link, useLocation } from 'react-router-dom';
|
|
13
|
+
import { useCaseDispatch, useCaseSelector } from '../../context/CaseContext';
|
|
14
14
|
import { ClusterRecommendationsContext } from '../../context/ClusterRecommendationsContext';
|
|
15
15
|
import { RulesStateContext } from '../../context/RulesContext';
|
|
16
16
|
import { TCStateContext } from '../../context/TopContentContext';
|
|
17
17
|
import { getIrtForSLAAndSeverity } from '../../reducers/CaseHelpers';
|
|
18
|
+
import { setCaseState } from '../../reducers/CaseReducer';
|
|
18
19
|
import RouteUtils from '../../utils/routeUtils';
|
|
19
20
|
import { AsideResults } from '../Recommendations/AsideResults';
|
|
20
21
|
import ClusterRecommendations from '../Recommendations/ClusterRecommendations';
|
|
@@ -26,7 +27,7 @@ import { AttachmentStateContext } from '../shared/fileUpload/reducer/AttachmentR
|
|
|
26
27
|
import Suggestions from '../Suggestions/Suggestions';
|
|
27
28
|
export default function SubmitCase(props) {
|
|
28
29
|
var _a;
|
|
29
|
-
const { entitlementSla, severity, caseType, version, versionsDetails, addNotifiedUserError, isCreatingCase, caseCreationError, caseCreationErrorMessage, selectedAccountDetails, caseNoOfCreatedCase, product, screenSessionRequested, phoneCountryCode, phoneAreaCodePrefixLineNumber, } = useCaseSelector((state) => ({
|
|
30
|
+
const { entitlementSla, severity, caseType, version, versionsDetails, addNotifiedUserError, isCreatingCase, caseCreationError, caseCreationErrorMessage, caseCreationErrorCode, caseCreation500ErrorStatus, selectedAccountDetails, caseNoOfCreatedCase, product, screenSessionRequested, phoneCountryCode, phoneAreaCodePrefixLineNumber, } = useCaseSelector((state) => ({
|
|
30
31
|
entitlementSla: state.caseDetails.entitlementSla,
|
|
31
32
|
severity: state.caseDetails.severity,
|
|
32
33
|
caseType: state.caseDetails.caseType,
|
|
@@ -36,6 +37,8 @@ export default function SubmitCase(props) {
|
|
|
36
37
|
isCreatingCase: state.isCreatingCase,
|
|
37
38
|
caseCreationError: state.caseCreationError,
|
|
38
39
|
caseCreationErrorMessage: state.caseCreationErrorMessage,
|
|
40
|
+
caseCreationErrorCode: state.caseCreationErrorCode,
|
|
41
|
+
caseCreation500ErrorStatus: state.caseCreation500ErrorStatus,
|
|
39
42
|
selectedAccountDetails: state.selectedAccountDetails,
|
|
40
43
|
caseNoOfCreatedCase: state.caseNoOfCreatedCase,
|
|
41
44
|
product: state.caseDetails.product,
|
|
@@ -43,6 +46,7 @@ export default function SubmitCase(props) {
|
|
|
43
46
|
phoneCountryCode: state.caseDetails.phoneCountryCode,
|
|
44
47
|
phoneAreaCodePrefixLineNumber: state.caseDetails.phoneAreaCodePrefixLineNumber,
|
|
45
48
|
}), isEqual);
|
|
49
|
+
const caseDispatch = useCaseDispatch();
|
|
46
50
|
const isIdea = caseType === PreviousCaseTypes.FEATURE_ENHANCEMENT;
|
|
47
51
|
const { topContentState: { topContent }, } = useContext(TCStateContext);
|
|
48
52
|
const { rulesState } = useContext(RulesStateContext);
|
|
@@ -86,11 +90,61 @@ export default function SubmitCase(props) {
|
|
|
86
90
|
const isNotAnIdea = caseType !== PreviousCaseTypes.FEATURE_ENHANCEMENT;
|
|
87
91
|
// To check if the user is ESS Customer and Product has ESS Support
|
|
88
92
|
const isESSCustomer = isSpecialSupportOfferingEnabled((_a = allProducts.data) === null || _a === void 0 ? void 0 : _a.productsResult, product);
|
|
93
|
+
const queryParams = getUrlParsedParams(useLocation().search);
|
|
94
|
+
const errorCode = queryParams === null || queryParams === void 0 ? void 0 : queryParams.caseCreationErrorCode; // to get errorCode from URL param
|
|
95
|
+
// to handle API error code from URL param and set error message alert
|
|
96
|
+
useEffect(() => {
|
|
97
|
+
if (isEqual(queryParams === null || queryParams === void 0 ? void 0 : queryParams.caseCreationErrorCode, '403') &&
|
|
98
|
+
!isCreatingCase &&
|
|
99
|
+
!caseCreationError &&
|
|
100
|
+
isEmpty(caseNoOfCreatedCase)) {
|
|
101
|
+
const errorMessage = (React.createElement("p", null,
|
|
102
|
+
"Unable to create case Contact is set to not manage cases.",
|
|
103
|
+
React.createElement("br", null),
|
|
104
|
+
"Please ",
|
|
105
|
+
React.createElement("a", { href: "/support/contact/customerService" }, "contact Customer Service"),
|
|
106
|
+
" if you think this is an error."));
|
|
107
|
+
const error = {
|
|
108
|
+
code: errorCode,
|
|
109
|
+
message: errorMessage,
|
|
110
|
+
};
|
|
111
|
+
formattedApiErrorMessage(error, { errorCode: { message: errorMessage } });
|
|
112
|
+
setCaseState(caseDispatch, {
|
|
113
|
+
caseCreationErrorMessage: error.message,
|
|
114
|
+
});
|
|
115
|
+
}
|
|
116
|
+
else if (caseCreation500ErrorStatus &&
|
|
117
|
+
!isCreatingCase &&
|
|
118
|
+
!caseCreationError &&
|
|
119
|
+
isEmpty(caseNoOfCreatedCase)) {
|
|
120
|
+
const errorMessageCaseSubmit500 = (React.createElement(Trans, null,
|
|
121
|
+
React.createElement("p", null,
|
|
122
|
+
"Try submitting again after a minute. Please ",
|
|
123
|
+
React.createElement(SupportFeedbackForm, { isInline: true }),
|
|
124
|
+
" if you continue to see this message.")));
|
|
125
|
+
const error = {
|
|
126
|
+
code: 500,
|
|
127
|
+
message: errorMessageCaseSubmit500,
|
|
128
|
+
};
|
|
129
|
+
formattedApiErrorMessage(error, { '500': { message: errorMessageCaseSubmit500 } });
|
|
130
|
+
setCaseState(caseDispatch, {
|
|
131
|
+
caseCreationErrorMessage: error.message,
|
|
132
|
+
});
|
|
133
|
+
}
|
|
134
|
+
// eslint-disable-next-line react-hooks/exhaustive-deps
|
|
135
|
+
}, [queryParams]);
|
|
136
|
+
// to update URL params with API error code in case of unsuccessful case submission
|
|
137
|
+
useEffect(() => {
|
|
138
|
+
if (caseCreationErrorCode) {
|
|
139
|
+
RouteUtils.updateQueryParams(props.routeProps, { caseCreationErrorCode: caseCreationErrorCode });
|
|
140
|
+
}
|
|
141
|
+
// eslint-disable-next-line react-hooks/exhaustive-deps
|
|
142
|
+
}, [caseCreationErrorCode]);
|
|
89
143
|
return (React.createElement("article", { className: "gird-main" },
|
|
90
144
|
React.createElement(AlertMessage, { className: "pf-v5-u-mt-lg", title: t('Failed to add user.'), variant: AlertType.DANGER, show: addNotifiedUserError }),
|
|
91
|
-
React.createElement(AlertMessage, { className: "pf-v5-u-mt-lg", variant: AlertType.DANGER, show: caseCreationError, title: t("Sorry, we're experiencing an error"), isInline: true },
|
|
145
|
+
React.createElement(AlertMessage, { className: "pf-v5-u-mt-lg", variant: AlertType.DANGER, show: caseCreationError || (!isCreatingCase && !caseCreationError && isEmpty(caseNoOfCreatedCase)), title: t("Sorry, we're experiencing an error"), isInline: true },
|
|
92
146
|
React.createElement(React.Fragment, null, caseCreationErrorMessage)),
|
|
93
|
-
!isCreatingCase && !caseCreationError && (React.createElement(React.Fragment, null,
|
|
147
|
+
!isCreatingCase && !caseCreationError && !isEmpty(caseNoOfCreatedCase) && (React.createElement(React.Fragment, null,
|
|
94
148
|
!isESSCustomer && !screenSessionRequested && showRemoteRiderBanner && (React.createElement(RemoteRiderBanner, { onConfirm: onRemoteRiderConfirm, onClose: onRemoteRiderClose, caseNumber: caseNoOfCreatedCase, isSecureSupport: loggedInUsersAccount.data.secureSupport, loggedInUserRights: loggedInUserRights })),
|
|
95
149
|
React.createElement("div", { className: "submit-case-header-container" },
|
|
96
150
|
React.createElement("p", { className: "kicker kicker-sm pf-v5-u-mb-sm" }, !isEmpty(RouteUtils.seBasePath) &&
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"UpdateSeverityModal.d.ts","sourceRoot":"","sources":["../../../../src/components/UpdateSeverityModal/UpdateSeverityModal.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"UpdateSeverityModal.d.ts","sourceRoot":"","sources":["../../../../src/components/UpdateSeverityModal/UpdateSeverityModal.tsx"],"names":[],"mappings":"AAuBA,OAAO,KAAsD,MAAM,OAAO,CAAC;AAoB3E,UAAU,MAAM;IACZ,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,IAAI,EAAE,OAAO,CAAC;IACd,OAAO,EAAE,MAAM,IAAI,CAAC;CACvB;AAED,MAAM,CAAC,OAAO,UAAU,mBAAmB,CAAC,KAAK,EAAE,MAAM,qBAshBxD"}
|
|
@@ -11,7 +11,7 @@ import { publicApi } from '@cee-eng/hydrajs';
|
|
|
11
11
|
import { Button, Modal, TextArea } from '@patternfly/react-core';
|
|
12
12
|
import { Dropdown, ToastNotification, useFetch } from '@rh-support/components';
|
|
13
13
|
import { GlobalMetadataStateContext, useCanEditCase } from '@rh-support/react-context';
|
|
14
|
-
import { autoEnableFtsOnCaseViewEditPage, isFtsEditableOnEditPage, isSev1, severitySort, showFtsOnCreateCasePage, toOption, toOptions, } from '@rh-support/utils';
|
|
14
|
+
import { autoEnableFtsOnCaseViewEditPage, isFtsEditableOnEditPage, isSev1, PreviousCaseTypes, severitySort, showFtsOnCreateCasePage, toOption, toOptions, } from '@rh-support/utils';
|
|
15
15
|
import { isUndefined } from 'lodash';
|
|
16
16
|
import find from 'lodash/find';
|
|
17
17
|
import includes from 'lodash/includes';
|
|
@@ -37,6 +37,7 @@ export default function UpdateSeverityModal(props) {
|
|
|
37
37
|
const caseDispatch = useCaseDispatch();
|
|
38
38
|
const canEditCase = useCanEditCase();
|
|
39
39
|
const [updatedCaseDetails, setUpdatedCaseDetails] = useState({});
|
|
40
|
+
const [isUpdateClickedToShowError, setIsUpdateClickedToShowError] = useState(false);
|
|
40
41
|
const [isSeverityInValid, setIsSeverityInValid] = useState(false);
|
|
41
42
|
const [seviritiesOptions, setSeveritiesOptions] = useState([]);
|
|
42
43
|
const [doNotShowIRT, setDoNotShowIRT] = useState(false);
|
|
@@ -57,13 +58,15 @@ export default function UpdateSeverityModal(props) {
|
|
|
57
58
|
entitlementSla: state.caseDetails.entitlementSla,
|
|
58
59
|
fts: state.caseDetails.fts,
|
|
59
60
|
contactInfo24x7: state.caseDetails.contactInfo24x7,
|
|
61
|
+
caseType: state.caseDetails.caseType,
|
|
60
62
|
},
|
|
61
63
|
isCaseUpdating: state.isCaseUpdating,
|
|
62
64
|
versionsDetails: state.versionsDetails,
|
|
63
65
|
ownersEntitlements: state.ownersEntitlements,
|
|
64
66
|
}), isEqual);
|
|
65
67
|
const { caseDetails, isCaseUpdating, ownersEntitlements, versionsDetails } = caseState;
|
|
66
|
-
const { entitlementSla, fts, contactInfo24x7 } = caseDetails;
|
|
68
|
+
const { entitlementSla, fts, contactInfo24x7, caseType } = caseDetails;
|
|
69
|
+
const isIdea = caseType === PreviousCaseTypes.FEATURE_ENHANCEMENT;
|
|
67
70
|
const [currentSeverity, setCurrentSeverity] = useState(caseDetails.caseSeverity);
|
|
68
71
|
const [localFtsContact, setLocalFtsContact] = useState(contactInfo24x7 || '');
|
|
69
72
|
const [localFts, setLocalFts] = useState(isUndefined(fts) ? true : fts);
|
|
@@ -136,6 +139,7 @@ export default function UpdateSeverityModal(props) {
|
|
|
136
139
|
setSeverityUpdating(caseOverviewDispatch, false);
|
|
137
140
|
setCurrentSeverity(caseDetails.caseSeverity);
|
|
138
141
|
setDescriptionValue('');
|
|
142
|
+
setIsUpdateClickedToShowError(false);
|
|
139
143
|
onClose();
|
|
140
144
|
});
|
|
141
145
|
// To handle on successful submit
|
|
@@ -148,12 +152,27 @@ export default function UpdateSeverityModal(props) {
|
|
|
148
152
|
const handleTextAreaChange = (value) => {
|
|
149
153
|
setDescriptionValue(value);
|
|
150
154
|
};
|
|
155
|
+
const getFtsUpdateComment = () => {
|
|
156
|
+
if (isEqual(caseDetails.fts, localFts) && isEqual(caseDetails.contactInfo24x7, localFtsContact))
|
|
157
|
+
return '';
|
|
158
|
+
if (caseDetails.fts && !localFts)
|
|
159
|
+
return '#### Contact Support Update \n User disabled 24x7 contact support';
|
|
160
|
+
if (!caseDetails.fts && localFts)
|
|
161
|
+
return '#### Contact Support Update \n User enabled 24x7 contact support';
|
|
162
|
+
return '#### Contact Support Update \n User updated 24x7 contact information';
|
|
163
|
+
};
|
|
151
164
|
const updateCaseFtsInfo = () => __awaiter(this, void 0, void 0, function* () {
|
|
152
165
|
try {
|
|
166
|
+
const ftsUpdateComment = `${getFtsUpdateComment()} \n\n #### Description \n ${descriptionValue.trim()}`;
|
|
153
167
|
yield updateCaseDetails(caseDispatch, caseDetails.caseNumber, {
|
|
154
168
|
fts: localFts,
|
|
155
169
|
contactInfo24x7: localFtsContact,
|
|
156
170
|
});
|
|
171
|
+
yield postCommentRequest({
|
|
172
|
+
caseNumber: caseDetails.caseNumber,
|
|
173
|
+
commentBody: ftsUpdateComment === null || ftsUpdateComment === void 0 ? void 0 : ftsUpdateComment.trim(),
|
|
174
|
+
contentType: 'markdown',
|
|
175
|
+
});
|
|
157
176
|
ToastNotification.addSuccessMessage(t(`Case has been successfully updated`));
|
|
158
177
|
}
|
|
159
178
|
catch (err) {
|
|
@@ -164,12 +183,17 @@ export default function UpdateSeverityModal(props) {
|
|
|
164
183
|
}
|
|
165
184
|
});
|
|
166
185
|
const onSubmit = () => __awaiter(this, void 0, void 0, function* () {
|
|
186
|
+
setIsUpdateClickedToShowError(true);
|
|
187
|
+
if (isSubmitButtonDisabled) {
|
|
188
|
+
return;
|
|
189
|
+
}
|
|
167
190
|
if (onlyFtsInfoChanged) {
|
|
168
191
|
updateCaseFtsInfo();
|
|
169
192
|
return;
|
|
170
193
|
}
|
|
194
|
+
const ftsUpdateComment = getFtsUpdateComment();
|
|
171
195
|
// Severity update successful comment body
|
|
172
|
-
const severityUpdateComment = t(
|
|
196
|
+
const severityUpdateComment = t(`#### Severity update \n Severity changed from {{oldSeverity}} to {{newSeverity}}\n\n ${isEmpty(ftsUpdateComment) ? '' : ftsUpdateComment + '\n\n\n'} #### Description \n{{description}}`, {
|
|
173
197
|
oldSeverity: caseDetails.caseSeverity,
|
|
174
198
|
newSeverity: updatedCaseDetails['severity'],
|
|
175
199
|
description: descriptionValue === null || descriptionValue === void 0 ? void 0 : descriptionValue.trim(),
|
|
@@ -228,6 +252,7 @@ export default function UpdateSeverityModal(props) {
|
|
|
228
252
|
}
|
|
229
253
|
finally {
|
|
230
254
|
yield updateDiscussionStateComments(dispatchDiscussion, caseDetails.caseNumber, allDiscussions, sort, caseFeedbacksHydra.data, discussionFiltersListState);
|
|
255
|
+
setIsUpdateClickedToShowError(false);
|
|
231
256
|
}
|
|
232
257
|
});
|
|
233
258
|
// To check if description is valid
|
|
@@ -265,10 +290,12 @@ export default function UpdateSeverityModal(props) {
|
|
|
265
290
|
setUpdatedCaseDetails((pre) => (Object.assign(Object.assign({}, pre), { contactInfo24x7: e.target.value.trim() })));
|
|
266
291
|
};
|
|
267
292
|
// To disable submit button wrt above conditions
|
|
268
|
-
const isSubmitButtonDisabled = checkIsUpdateValid() &&
|
|
293
|
+
const isSubmitButtonDisabled = checkIsUpdateValid() && isTextAreaValid() ? false : true;
|
|
269
294
|
// Update severity modal buttons
|
|
270
295
|
const modalActions = [
|
|
271
|
-
React.createElement(Button, { key: "submit", variant: "primary", onClick: onSubmit, isLoading: isCaseUpdating || isPostingComment, "data-tracking-id": "update-severity-submit", isDisabled:
|
|
296
|
+
React.createElement(Button, { key: "submit", variant: "primary", onClick: onSubmit, isLoading: isCaseUpdating || isPostingComment, "data-tracking-id": "update-severity-submit", isDisabled: !isUpdateClickedToShowError && checkIsUpdateValid()
|
|
297
|
+
? false
|
|
298
|
+
: isSubmitButtonDisabled || isCaseUpdating || isPostingComment }, t('Update')),
|
|
272
299
|
React.createElement(Button, { key: "back", variant: "link", onClick: onCancel, "data-tracking-id": "update-severity-cancel", isDisabled: isCaseUpdating || isPostingComment }, t('Cancel')),
|
|
273
300
|
];
|
|
274
301
|
// To handle the severity change
|
|
@@ -277,10 +304,10 @@ export default function UpdateSeverityModal(props) {
|
|
|
277
304
|
return;
|
|
278
305
|
if (isSev1(option.value.name) && isFtsEditableOnEditPage(entitlementSla, option.value.name)) {
|
|
279
306
|
setLocalFts(true);
|
|
280
|
-
setUpdatedCaseDetails((pre) => (Object.assign(Object.assign({}, pre), { severity: option.value.name, fts:
|
|
307
|
+
setUpdatedCaseDetails((pre) => (Object.assign(Object.assign({}, pre), { severity: option.value.name, fts: !isIdea })));
|
|
281
308
|
}
|
|
282
309
|
else {
|
|
283
|
-
setUpdatedCaseDetails({ severity: option.value.name, fts:
|
|
310
|
+
setUpdatedCaseDetails({ severity: option.value.name, fts: false });
|
|
284
311
|
}
|
|
285
312
|
setCurrentSeverity(option.value.name);
|
|
286
313
|
updateState(option.value.name);
|
|
@@ -356,10 +383,12 @@ export default function UpdateSeverityModal(props) {
|
|
|
356
383
|
React.createElement("label", { htmlFor: "date-input", className: "pf-v5-u-mt-md" },
|
|
357
384
|
React.createElement(Trans, null, "Describe update"),
|
|
358
385
|
React.createElement("span", { className: "form-required", "aria-hidden": "true" }, "*")),
|
|
359
|
-
React.createElement(TextArea, { placeholder: t('How has the business impact changed? If you have increased severity, please explain why.'), isDisabled: (caseOverviewState.caseSeverityUpdating && isCaseUpdating) ||
|
|
386
|
+
React.createElement(TextArea, { placeholder: t('How has the business impact changed? If you have increased severity, please explain why.'), isDisabled: (caseOverviewState.caseSeverityUpdating && isCaseUpdating) ||
|
|
387
|
+
isPostingComment ||
|
|
388
|
+
!checkIsUpdateValid(), value: descriptionValue, onChange: (_event, value) => handleTextAreaChange(value), resizeOrientation: "vertical", "aria-label": "severity-update-descritpion", validated: isEmpty(descriptionValue) && isUpdateClickedToShowError ? 'error' : 'default', isRequired: true }),
|
|
360
389
|
React.createElement("div", { className: "pf-v5-u-mt-xs" },
|
|
361
390
|
React.createElement(Trans, null, "To view your comment, go to the Discussion tab."))),
|
|
362
|
-
isFtsEditable && (React.createElement("div", { className: "pf-v5-u-mt-md pf-v5-u-mb-sm" },
|
|
391
|
+
!isIdea && isFtsEditable && (React.createElement("div", { className: "pf-v5-u-mt-md pf-v5-u-mb-sm" },
|
|
363
392
|
React.createElement("div", null,
|
|
364
393
|
React.createElement("input", { type: "checkbox", id: "update-severity-fts", "data-tracking-id": "update-severity-fts", name: "update-severity-fts", checked: localFts, onChange: onFtsChange }),
|
|
365
394
|
React.createElement("label", { htmlFor: "update-severity-fts" },
|
|
@@ -177,6 +177,7 @@ export interface ICaseState {
|
|
|
177
177
|
isCreatingCase: boolean;
|
|
178
178
|
caseCreationError: boolean;
|
|
179
179
|
caseCreationErrorMessage: string | JSX.Element;
|
|
180
|
+
caseCreationErrorCode?: number | string;
|
|
180
181
|
addNotifiedUserError: boolean;
|
|
181
182
|
updateNotifiedUserError: boolean;
|
|
182
183
|
updateNotifiedUserLoading: boolean;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"CaseConstNTypes.d.ts","sourceRoot":"","sources":["../../../src/reducers/CaseConstNTypes.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"CaseConstNTypes.d.ts","sourceRoot":"","sources":["../../../src/reducers/CaseConstNTypes.ts"],"names":[],"mappings":"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"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"CaseReducer.d.ts","sourceRoot":"","sources":["../../../src/reducers/CaseReducer.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,YAAY,EAAE,MAAM,qDAAqD,CAAC;AACnF,OAAO,EAAE,YAAY,EAAE,iBAAiB,EAAE,WAAW,EAAE,aAAa,EAAE,MAAM,yCAAyC,CAAC;AAEtH,OAAO,EAAE,QAAQ,EAAE,MAAM,wCAAwC,CAAC;AAClE,OAAO,EAAE,0BAA0B,EAA+B,MAAM,qCAAqC,CAAC;AAC9G,OAAO,EAAE,QAAQ,EAAE,MAAM,wCAAwC,CAAC;AAClE,OAAO,EAAE,mBAAmB,EAAE,MAAM,0CAA0C,CAAC;AAE/E,OAAO,EAAE,mBAAmB,EAAE,MAAM,0BAA0B,CAAC;AAC/D,OAAO,EAAE,QAAQ,EAAE,MAAM,8BAA8B,CAAC;AAWxD,OAAO,EAEH,uBAAuB,EAEvB,UAAU,EAEb,MAAM,mBAAmB,CAAC;AAS3B,OAAO,EAAE,0BAA0B,EAAiB,MAAM,yBAAyB,CAAC;AAEpF,eAAO,MAAM,WAAW,WAAY,UAAU,UAAU,GAAG,KAAG,
|
|
1
|
+
{"version":3,"file":"CaseReducer.d.ts","sourceRoot":"","sources":["../../../src/reducers/CaseReducer.ts"],"names":[],"mappings":"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"}
|
|
@@ -63,7 +63,7 @@ export const caseReducer = (pState, action) => {
|
|
|
63
63
|
return Object.assign(Object.assign({}, pState), { caseNoOfCreatedCase: action.payload.caseNoOfCreatedCase });
|
|
64
64
|
}
|
|
65
65
|
case CaseReducerConstants.setCaseCreationError: {
|
|
66
|
-
return Object.assign(Object.assign({}, pState), { isCreatingCase: false, caseCreationError: true, caseCreationErrorMessage: action.payload.caseCreationErrorMessage });
|
|
66
|
+
return Object.assign(Object.assign({}, pState), { isCreatingCase: false, caseCreationError: true, caseCreationErrorMessage: action.payload.caseCreationErrorMessage, caseCreationErrorCode: action.payload.caseCreationErrorCode });
|
|
67
67
|
}
|
|
68
68
|
// Recommendation docs track
|
|
69
69
|
case CaseReducerConstants.setCaseRecommendations: {
|
|
@@ -180,12 +180,13 @@ export const submitCase = (dispatch, sessionRestoreDispatch, caseDetails, sessio
|
|
|
180
180
|
dispatch({ type: CaseReducerConstants.caseCreated, payload: { caseNoOfCreatedCase: caseNumber } });
|
|
181
181
|
}
|
|
182
182
|
catch (error) {
|
|
183
|
+
const errorCode = parseInt((error === null || error === void 0 ? void 0 : error.code) || (error === null || error === void 0 ? void 0 : error.status)) || '';
|
|
183
184
|
const errorMessage = formattedApiErrorMessage(error, { '500': { message: errorMessage500 } });
|
|
184
185
|
// Set `caseCreationError` as true if there is HTTP 500 error
|
|
185
186
|
updateCaseCreationErrorStatusOnError(dispatch, error);
|
|
186
187
|
dispatch({
|
|
187
188
|
type: CaseReducerConstants.setCaseCreationError,
|
|
188
|
-
payload: { caseCreationErrorMessage: errorMessage },
|
|
189
|
+
payload: { caseCreationErrorMessage: errorMessage, caseCreationErrorCode: errorCode },
|
|
189
190
|
});
|
|
190
191
|
!isResubmit &&
|
|
191
192
|
(yield updateSession(sessionRestoreDispatch, sessionItem.session.id, sessionItem.sessionDetails, Object.assign(Object.assign({}, sessionItem.session), { caseCreationError: true })));
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"RouteConstNTypes.d.ts","sourceRoot":"","sources":["../../../src/reducers/RouteConstNTypes.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,mCAAmC,CAAC;AAE/D,MAAM,WAAW,iBAAiB;IAC9B,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,SAAS,CAAC,EAAE,MAAM,CAAC;
|
|
1
|
+
{"version":3,"file":"RouteConstNTypes.d.ts","sourceRoot":"","sources":["../../../src/reducers/RouteConstNTypes.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,mCAAmC,CAAC;AAE/D,MAAM,WAAW,iBAAiB;IAC9B,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,qBAAqB,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;IAIxC,OAAO,CAAC,EAAE,MAAM,CAAC;CACpB;AAED,MAAM,WAAW,qBAAsB,SAAQ,UAAU;IACrD,EAAE,EAAE,MAAM,GAAG,MAAM,CAAC;IACpB,QAAQ,EAAE,MAAM,CAAC;IAGjB,eAAe,EAAE,MAAM,CAAC;IACxB,KAAK,EAAE,MAAM,CAAC;IACd,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,cAAc,CAAC,EAAE,OAAO,CAAC;IACzB,aAAa,CAAC,EAAE,OAAO,CAAC;IACxB,cAAc,CAAC,EAAE,OAAO,CAAC;CAC5B;AAED,MAAM,WAAW,sBAAsB;IACnC,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAC,qBAAqB,CAAC,CAAC;CACjD;AAED,MAAM,WAAW,eAAe;CAAG;AACnC,oBAAY,gBAAgB;IACxB,WAAW,gBAAgB;IAC3B,SAAS,cAAc;IACvB,YAAY,iBAAiB;IAC7B,aAAa,kBAAkB;IAC/B,aAAa,kBAAkB;IAC/B,UAAU,eAAe;IACzB,MAAM,WAAW;IACjB,WAAW,gBAAgB;IAC3B,KAAK,UAAU;CAClB;AAKD,eAAO,MAAM,4BAA4B,EAAE,gBAAgB,EAI1D,CAAC;AAEF,eAAO,MAAM,gCAAgC,EAAE,gBAAgB,EAK9D,CAAC;AAEF,eAAO,MAAM,iCAAiC,oBAQ7C,CAAC;AAEF,eAAO,MAAM,gCAAgC,oBAQ5C,CAAC;AAEF,eAAO,MAAM,4BAA4B,oBAQxC,CAAC;AAGF,eAAO,MAAM,0BAA0B,oBAAiC,CAAC;AAEzE,eAAO,MAAM,mCAAmC,oBAA+D,CAAC;AAEhH,eAAO,MAAM,kCAAkC,oBAO9C,CAAC;AAEF,eAAO,MAAM,+BAA+B,oBAM3C,CAAC;AAEF,eAAO,MAAM,sCAAsC,oBAAyD,CAAC;AAE7G,eAAO,MAAM,qCAAqC,oBAAgE,CAAC;AAEnH,eAAO,MAAM,6BAA6B,oBAAiC,CAAC;AAE5E,eAAO,MAAM,wBAAwB,EAAE,gBAAgB,EAKtD,CAAC;AAEF,eAAO,MAAM,8BAA8B,oBAA+B,CAAC"}
|
package/lib/esm/scss/_main.scss
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rh-support/troubleshoot",
|
|
3
|
-
"version": "2.2.
|
|
3
|
+
"version": "2.2.105",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public",
|
|
6
6
|
"registry": "https://registry.npmjs.org"
|
|
@@ -131,5 +131,5 @@
|
|
|
131
131
|
"defaults and supports es6-module",
|
|
132
132
|
"maintained node versions"
|
|
133
133
|
],
|
|
134
|
-
"gitHead": "
|
|
134
|
+
"gitHead": "a062f1285ca3a3579dd8f5d13e54be2d9940d1be"
|
|
135
135
|
}
|