Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -469,7 +469,9 @@ export class DatasetsFilterComponent implements OnInit, OnDestroy {
.open(SearchParametersDialogComponent, {
data: {
usedFields: usedFields,
parameterKeys: availableKeys,
parameterKeys: availableKeys.map(
(key) => this.humanNameMap[key] || key,
),
Comment on lines +472 to +474
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

If human name is not available, we need to apply the transformation that is applied in the scientific metadata visualization

},
restoreFocus: false,
})
Expand Down
Loading