Handle computed hotkey descriptions
All checks were successful
Build and Deploy / build-and-deploy (push) Successful in 54s
Run Tests / test (push) Successful in 2m2s

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"> <div style="column-count: 2">
{keys.map(hotkey => ( {keys.map(hotkey => (
<div> <div>
<Hotkey hotkey={hotkey as GenericHotkey} /> {hotkey?.description} <Hotkey hotkey={hotkey as GenericHotkey} /> {unref(hotkey?.description)}
</div> </div>
))} ))}
</div> </div>