diff --git a/assets/js/pages/HostRelevantPatches/HostRelevantPatchesPage.jsx b/assets/js/pages/HostRelevantPatches/HostRelevantPatchesPage.jsx index f04fe17dbf..facb40424b 100644 --- a/assets/js/pages/HostRelevantPatches/HostRelevantPatchesPage.jsx +++ b/assets/js/pages/HostRelevantPatches/HostRelevantPatchesPage.jsx @@ -34,7 +34,6 @@ function HostRelevantPatches({ hostName, onNavigate, patches }) { Papa.unparse( { fields: [ - 'id', 'advisory_type', 'advisory_name', 'advisory_synopsis', diff --git a/assets/js/pages/HostRelevantPatches/HostRelevantPatchesPage.test.jsx b/assets/js/pages/HostRelevantPatches/HostRelevantPatchesPage.test.jsx index 248adde021..7427ec6ddd 100644 --- a/assets/js/pages/HostRelevantPatches/HostRelevantPatchesPage.test.jsx +++ b/assets/js/pages/HostRelevantPatches/HostRelevantPatchesPage.test.jsx @@ -170,7 +170,6 @@ describe('HostRelevantPatchesPage', () => { advisory_name: 'carbonara123', advisory_type: 'bugfix', advisory_status: 'kekw', - id: 1234, advisory_synopsis: 'lorem ipsum', date: '12 oct 1990', update_date: '12 oct 1990', @@ -186,7 +185,7 @@ describe('HostRelevantPatchesPage', () => { expect(window.URL.createObjectURL).toHaveBeenCalledWith(new File([], '')); expect(window.URL.createObjectURL).toHaveReturnedWith({ name: `${hostName}-patches.csv`, - size: 110, + size: 102, }); });