Fix some minor issues on instrument overview for myKV

This commit is contained in:
Ramon Wenger 2022-10-06 12:15:45 +02:00
parent 1d4ce5abcb
commit 5ead2c9af6
2 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
<template> <template>
<div class="instrument-filter"> <div class="instrument-filter">
<filter-group <filter-group
title="Alle Instrumente" :title="`Alle ${$flavor.textInstruments}`"
data-cy="filter-all-instruments" data-cy="filter-all-instruments"
/> />

View File

@ -87,4 +87,4 @@ class InstrumentQuery(object):
return InstrumentType.objects.filter(instruments__isnull=False).order_by('name').distinct() return InstrumentType.objects.filter(instruments__isnull=False).order_by('name').distinct()
def resolve_instrument_categories(self, info, **kwargs): def resolve_instrument_categories(self, info, **kwargs):
return InstrumentCategory.objects.all() return InstrumentCategory.objects.all().order_by('name')