Fix task relation kind dropdown

This commit is contained in:
kolaente 2020-04-14 22:25:46 +02:00
parent e2137d08a5
commit a77b4253cb
Signed by untrusted user: konrad
GPG Key ID: F40E70337AB24C9B
1 changed files with 1 additions and 1 deletions

View File

@ -33,7 +33,7 @@
<select v-model="newTaskRelationKind">
<option value="unset">Select a relation kind</option>
<option v-for="(label, rk) in relationKinds" :key="rk" :value="rk">
{{ label }}
{{ label[0] }}
</option>
</select>
</div>