Fix key attribute in v-for loop for default key bindings

This commit is contained in:
Jonatan Heyman 2025-04-19 13:31:33 +02:00
parent aa7daf4ed6
commit c4056096a6

View File

@ -137,7 +137,7 @@
<tbody> <tbody>
<KeyBindRow <KeyBindRow
v-for="key in fixedKeymap" v-for="key in fixedKeymap"
:key="key.key" :key="key.source + '_' + key.key"
:keys="key.key" :keys="key.key"
:command="key.command" :command="key.command"
:isDefault="key.isDefault" :isDefault="key.isDefault"