Handle computed hotkey descriptions

This commit is contained in:
escapee 2024-04-11 10:16:37 -07:00
parent 09349620d1
commit f38c64f36a

View file

@ -142,7 +142,7 @@ registerInfoComponent(
<div style="column-count: 2">
{keys.map(hotkey => (
<div>
<Hotkey hotkey={hotkey as GenericHotkey} /> {hotkey?.description}
<Hotkey hotkey={hotkey as GenericHotkey} /> {unref(hotkey?.description)}
</div>
))}
</div>