Fix some minor issues on instrument overview for myKV
This commit is contained in:
parent
1d4ce5abcb
commit
5ead2c9af6
|
|
@ -1,7 +1,7 @@
|
|||
<template>
|
||||
<div class="instrument-filter">
|
||||
<filter-group
|
||||
title="Alle Instrumente"
|
||||
:title="`Alle ${$flavor.textInstruments}`"
|
||||
data-cy="filter-all-instruments"
|
||||
/>
|
||||
|
||||
|
|
|
|||
|
|
@ -87,4 +87,4 @@ class InstrumentQuery(object):
|
|||
return InstrumentType.objects.filter(instruments__isnull=False).order_by('name').distinct()
|
||||
|
||||
def resolve_instrument_categories(self, info, **kwargs):
|
||||
return InstrumentCategory.objects.all()
|
||||
return InstrumentCategory.objects.all().order_by('name')
|
||||
|
|
|
|||
Loading…
Reference in New Issue