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
3 changes: 2 additions & 1 deletion invenio_records_resources/services/records/facets/facets.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
#
# Copyright (C) 2021 CERN.
# Copyright (C) 2023 Northwestern University.
# Copyright (C) 2025 KTH Royal Institute of Technology.
#
# Invenio-Records-Resources is free software; you can redistribute it and/or
# modify it under the terms of the MIT License; see LICENSE file for more
Expand Down Expand Up @@ -224,7 +225,7 @@ def get_labelled_values(
bucket_out = {
"key": key,
"doc_count": self.get_metric(bucket),
"label": label_map[key],
"label": label_map.get(key),
"is_selected": self.is_filtered(full_key, filter_values),
}
if "inner" in bucket:
Expand Down
Loading