Skip to content

Commit

Permalink
feat(dashboard): add hardware filters in modal
Browse files Browse the repository at this point in the history
- compilers filters
- archs filters
- config filters

Part of #618, #600, #447
  • Loading branch information
Francisco2002 committed Dec 2, 2024
1 parent 7e7f421 commit 7b70110
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions dashboard/src/pages/hardwareDetails/HardwareDetailsFilter.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,21 @@ const sectionHardware: ISectionItem[] = [
subtitle: 'filter.statusSubtitle',
sectionKey: 'testStatus',
},
{
title: 'global.configs',
subtitle: 'filter.configsSubtitle',
sectionKey: 'configs',
},
{
title: 'global.architecture',
subtitle: 'filter.architectureSubtitle',
sectionKey: 'archs',
},
{
title: 'global.compilers',
subtitle: 'filter.compilersSubtitle',
sectionKey: 'compilers',
},
];

const HardwareDetailsFilter = ({
Expand Down

0 comments on commit 7b70110

Please sign in to comment.