@rh-support/cases 2.1.60 → 2.1.61

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.
@@ -68,7 +68,7 @@ export function CaseListTable(props) {
68
68
  },
69
69
  {
70
70
  id: CaseListColumnIds.summary,
71
- title: t('Issue summary'),
71
+ title: t('Problem description'),
72
72
  sortable: true,
73
73
  },
74
74
  {
@@ -374,7 +374,7 @@ export function CaseListTable(props) {
374
374
  React.createElement("span", { className: "case-number" }, row.case_number)),
375
375
  row.case_customer_escalation ? (React.createElement("div", { className: "escalation-label" },
376
376
  React.createElement(Trans, null, "Escalated"))) : (''))),
377
- React.createElement(Td, { dataLabel: "Issue summary" }, row.case_summary),
377
+ React.createElement(Td, { dataLabel: "Problem description" }, row.case_summary),
378
378
  React.createElement(Td, { className: !isColumnVisible('contactName') ? Visibility.hidden : '', dataLabel: "Owner" }, row.case_contactName),
379
379
  React.createElement(Td, { className: !isColumnVisible('lastModifiedDate') ? Visibility.hidden : '', dataLabel: "Modified by" },
380
380
  React.createElement("span", { className: "modified-name" }, row.case_lastModifiedByName),
@@ -269,7 +269,7 @@ export default function DownloadCSVFileModal(props) {
269
269
  React.createElement(Checkbox, { className: "nested", label: t('Case ID'), defaultChecked: true, isDisabled: true, id: "controlled-check-2", name: "check2" }),
270
270
  generateCheckboxes(csvHeadersOne)),
271
271
  React.createElement(GridItem, { span: 6 },
272
- React.createElement(Checkbox, { className: "nested", label: t('Issue summary'), defaultChecked: true, isDisabled: true, id: "controlled-check-3", name: "check3" }),
272
+ React.createElement(Checkbox, { className: "nested", label: t('Problem description'), defaultChecked: true, isDisabled: true, id: "controlled-check-3", name: "check3" }),
273
273
  generateCheckboxes(csvHeadersTwo))))));
274
274
  };
275
275
  const downloadCSVModalDescription = (numberOfCases) => {
@@ -502,7 +502,7 @@
502
502
  border-right: var(--pf-v5-c-table--border-width--base) solid var(--pf-v5-c-table--BorderColor);
503
503
  }
504
504
 
505
- /* Issue Summary Header */
505
+ /* Problem description Header */
506
506
  th#summary.pf-v5-c-table__th,
507
507
  .case-list-table tbody > tr > :nth-child(3) {
508
508
  min-width: 270px !important;
@@ -545,7 +545,7 @@
545
545
  }
546
546
 
547
547
  @media (min-width: 1800px) {
548
- /* Issue Summary */
548
+ /* Problem description */
549
549
  th#summary.pf-v5-c-table__th,
550
550
  .case-list-table tbody > tr > :nth-child(3) {
551
551
  min-width: 500px !important;
@@ -61,7 +61,7 @@ export const caseListSortColumnIdsToSFDCMap = {
61
61
  };
62
62
  export const caseTableColumSortNamesMap = {
63
63
  [CaseListColumnIds.caseId]: 'Case ID',
64
- [CaseListColumnIds.summary]: 'Issue summary',
64
+ [CaseListColumnIds.summary]: 'Problem description',
65
65
  [CaseListColumnIds.severity]: 'Severity',
66
66
  [CaseListColumnIds.owner]: 'Owner',
67
67
  [CaseListColumnIds.created]: 'Created date',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rh-support/cases",
3
- "version": "2.1.60",
3
+ "version": "2.1.61",
4
4
  "publishConfig": {
5
5
  "access": "public",
6
6
  "registry": "https://registry.npmjs.org"
@@ -43,11 +43,11 @@
43
43
  "@patternfly/patternfly": "5.1.0",
44
44
  "@patternfly/react-core": "5.1.1",
45
45
  "@patternfly/react-table": "5.1.1",
46
- "@rh-support/components": "2.1.46",
47
- "@rh-support/react-context": "2.1.51",
46
+ "@rh-support/components": "2.1.47",
47
+ "@rh-support/react-context": "2.1.52",
48
48
  "@rh-support/types": "2.0.3",
49
- "@rh-support/user-permissions": "2.1.33",
50
- "@rh-support/utils": "2.1.23",
49
+ "@rh-support/user-permissions": "2.1.34",
50
+ "@rh-support/utils": "2.1.24",
51
51
  "localforage": "^1.10.0",
52
52
  "lodash": "^4.17.21",
53
53
  "pegjs": "^0.10.0",
@@ -96,5 +96,5 @@
96
96
  "defaults and supports es6-module",
97
97
  "maintained node versions"
98
98
  ],
99
- "gitHead": "77a16a73843997304f58e22ff3fa0b436c2a7344"
99
+ "gitHead": "b3b0fd899e604b6693213eefc4f1d3ca54655040"
100
100
  }