View | Details | Raw Unified | Return to bug 41863
Collapse All | Expand All

(-)a/Koha/SearchEngine/Elasticsearch/Search.pm (-2 / +1 lines)
Lines 557-563 sub _convert_facets { Link Here
557
            if ( exists( $special{$type} ) ) {
557
            if ( exists( $special{$type} ) ) {
558
                $label = $special{$type}->{$t} // $t;
558
                $label = $special{$type}->{$t} // $t;
559
            } elsif ( $type_to_label{$type}{av_cat} ) {
559
            } elsif ( $type_to_label{$type}{av_cat} ) {
560
                $label = $authorised_values{$t};
560
                $label = $authorised_values{$t} // $t;
561
            } else {
561
            } else {
562
                $label = $t;
562
                $label = $t;
563
            }
563
            }
564
- 

Return to bug 41863