@rh-support/troubleshoot 2.5.40 → 2.5.41
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.
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"CaseDetailsTabs.d.ts","sourceRoot":"","sources":["../../../../src/components/CaseEditView/CaseDetailsTabs.tsx"],"names":[],"mappings":"AAeA,OAAO,KAAiD,MAAM,OAAO,CAAC;AAEtE,OAAO,EAAE,mBAAmB,EAAa,MAAM,kBAAkB,CAAC;AAyBlE,UAAU,MAAM;IACZ,UAAU,EAAE,MAAM,CAAC;IACnB,UAAU,EAAE,mBAAmB,CAAC;IAChC,QAAQ,EAAE,MAAM,CAAC;IACjB,OAAO,EAAE,KAAK,CAAC,gBAAgB,CAAC,cAAc,CAAC,CAAC;CACnD;AACD,wBAAgB,eAAe,CAAC,KAAK,EAAE,MAAM,
|
|
1
|
+
{"version":3,"file":"CaseDetailsTabs.d.ts","sourceRoot":"","sources":["../../../../src/components/CaseEditView/CaseDetailsTabs.tsx"],"names":[],"mappings":"AAeA,OAAO,KAAiD,MAAM,OAAO,CAAC;AAEtE,OAAO,EAAE,mBAAmB,EAAa,MAAM,kBAAkB,CAAC;AAyBlE,UAAU,MAAM;IACZ,UAAU,EAAE,MAAM,CAAC;IACnB,UAAU,EAAE,mBAAmB,CAAC;IAChC,QAAQ,EAAE,MAAM,CAAC;IACjB,OAAO,EAAE,KAAK,CAAC,gBAAgB,CAAC,cAAc,CAAC,CAAC;CACnD;AACD,wBAAgB,eAAe,CAAC,KAAK,EAAE,MAAM,qBAkO5C"}
|
|
@@ -105,8 +105,7 @@ export function CaseDetailsTabs(props) {
|
|
|
105
105
|
routePath: 'escalation',
|
|
106
106
|
component: (React.createElement(RMEEscalationList, { escalations: caseEscalations.data, caseNumber: caseNumber, caseStatus: status, accountNumber: loggedInUserRights.data.getAccountNumber(), isInternal: loggedInUserRights.data.isInternal() })),
|
|
107
107
|
});
|
|
108
|
-
|
|
109
|
-
!loggedInUsersAccount.data.secureSupport &&
|
|
108
|
+
!loggedInUsersAccount.data.secureSupport &&
|
|
110
109
|
tabsToRender.push({
|
|
111
110
|
'data-tracking-id': 'case-history-tab',
|
|
112
111
|
title: CaseDetailsTabsEnum.HISTORY,
|
|
@@ -193,8 +193,8 @@ const applyReplacements = (item) => {
|
|
|
193
193
|
const transformApiResponseToTimelineData = (apiResponse) => {
|
|
194
194
|
let previousUser = null;
|
|
195
195
|
const timelineEvents = apiResponse.historyItems
|
|
196
|
-
// Filter out 'Case Group' changes because we don't have decode of value
|
|
197
|
-
.filter((item) => item.fieldName !== 'FolderId__c')
|
|
196
|
+
// Filter out 'Case Group' and 'OwnerId' changes because we don't have decode of value
|
|
197
|
+
.filter((item) => item.fieldName !== 'FolderId__c' && item.fieldName !== 'OwnerId')
|
|
198
198
|
.map((item, index) => {
|
|
199
199
|
const currentUser = item.createdByUserName;
|
|
200
200
|
const useAvatar = index === 0 || (!!previousUser && currentUser !== previousUser);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rh-support/troubleshoot",
|
|
3
|
-
"version": "2.5.
|
|
3
|
+
"version": "2.5.41",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public",
|
|
6
6
|
"registry": "https://registry.npmjs.org"
|
|
@@ -134,5 +134,5 @@
|
|
|
134
134
|
"defaults and supports es6-module",
|
|
135
135
|
"maintained node versions"
|
|
136
136
|
],
|
|
137
|
-
"gitHead": "
|
|
137
|
+
"gitHead": "023b279f4f5f41e7d37b2877a8d5acbaa8c7ca85"
|
|
138
138
|
}
|