Skip to content

Commit

Permalink
fix(RHINENG-15165): sorting by name in Never reported table
Browse files Browse the repository at this point in the history
  • Loading branch information
AsToNlele committed Jan 8, 2025
1 parent d5de286 commit 8379db5
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions src/SmartComponents/ReportDetails/ReportDetails.js
Original file line number Diff line number Diff line change
Expand Up @@ -239,10 +239,15 @@ const ReportDetailsBase = ({
remediationsEnabled={false}
fetchApi={fetchNeverReported}
columns={[
Columns.customName({
showLink: true,
showOsInfo: true,
}),
Columns.customName(
{
showLink: true,
showOsInfo: true,
},
{
sortBy: ['display_name'],
}
),
Columns.inventoryColumn('groups', {
requiresDefault: true,
sortBy: ['groups'],
Expand Down

0 comments on commit 8379db5

Please sign in to comment.