Skip to content

Commit

Permalink
wc: Fix filters configuration for sample browser #TASK-7216 #TASK-7100
Browse files Browse the repository at this point in the history
  • Loading branch information
jmjuanes committed Jan 27, 2025
1 parent fa6d902 commit 6042445
Showing 1 changed file with 13 additions and 11 deletions.
24 changes: 13 additions & 11 deletions src/webcomponents/sample/sample-browser.js
Original file line number Diff line number Diff line change
Expand Up @@ -158,48 +158,50 @@ export default class SampleBrowser extends LitElement {
}
],
filter: {
searchButton: false,
sections: [
{
title: "Section title",
collapsed: false,
filters: [
{
id: "id",
name: "Sample ID",
description: ""
title: "Sample ID",
description: "",
quick: true,
},
{
id: "individualId",
name: "Individual ID",
title: "Individual ID",
placeholder: "LP-1234, LP-4567...",
description: ""
description: "",
quick: true,
},
{
id: "fileIds",
name: "File Name",
title: "File Name",
placeholder: "file.vcf, ...",
description: ""
description: "",
quick: true,
},
{
id: "phenotypes",
name: "Phenotypes",
title: "Phenotypes",
placeholder: "Full-text search, e.g. melanoma",
description: ""
},
{
id: "somatic",
name: "Somatic",
title: "Somatic",
description: ""
},
{
id: "date",
name: "Date",
title: "Date",
description: ""
},
{
id: "annotations",
name: "Sample Annotations",
title: "Sample Annotations",
description: ""
}
]
Expand Down

0 comments on commit 6042445

Please sign in to comment.