Skip to content

Commit

Permalink
feat: ✨ Made priority visable. Also fixed objects with no priorty not…
Browse files Browse the repository at this point in the history
… displaying as (Blank) in the filter. (#488)
  • Loading branch information
idrisbo authored Aug 16, 2023
1 parent c8eeb40 commit d613f3c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions libs/swcrapp/src/lib/config/filterConfig.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,8 @@ export const filterConfig: FilterConfig<SwcrPackage> = {
},
{
name: 'Priority',
valueFormatter: ({ priority }) => priority,
defaultHidden: true,
valueFormatter: ({ priority }) => (priority ? priority : null),
defaultHidden: false,
},
{
name: 'Control system',
Expand Down

0 comments on commit d613f3c

Please sign in to comment.