mirror of
https://github.com/ajnart/homarr.git
synced 2025-11-10 15:35:55 +01:00
🚨 Fix compilation
This commit is contained in:
@@ -63,7 +63,9 @@ export const AboutModal = ({ opened, closeModal, newVersionAvailable }: AboutMod
|
|||||||
<td>
|
<td>
|
||||||
<Kbd>{element.key}</Kbd>
|
<Kbd>{element.key}</Kbd>
|
||||||
</td>
|
</td>
|
||||||
<td><Text>{element.shortcut}</Text></td>
|
<td>
|
||||||
|
<Text>{element.shortcut}</Text>
|
||||||
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
));
|
));
|
||||||
|
|
||||||
@@ -119,13 +121,15 @@ export const AboutModal = ({ opened, closeModal, newVersionAvailable }: AboutMod
|
|||||||
</Table>
|
</Table>
|
||||||
<Accordion mb={5} variant="contained" radius="md">
|
<Accordion mb={5} variant="contained" radius="md">
|
||||||
<Accordion.Item value="keybinds">
|
<Accordion.Item value="keybinds">
|
||||||
<Accordion.Control icon={<IconKey size={20} />}>t{'layout/modals/about:keybinds'}</Accordion.Control>
|
<Accordion.Control icon={<IconKey size={20} />}>
|
||||||
|
{t('layout/modals/about:keybinds')}
|
||||||
|
</Accordion.Control>
|
||||||
<Accordion.Panel>
|
<Accordion.Panel>
|
||||||
<Table mb={5}>
|
<Table mb={5}>
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th>t{'layout/modals/about:key'}</th>
|
<th>{t('layout/modals/about:key')}</th>
|
||||||
<th>t{'layout/modals/about:action'}</th>
|
<th>{t('layout/modals/about:action')}</th>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>{rows}</tbody>
|
<tbody>{rows}</tbody>
|
||||||
|
|||||||
Reference in New Issue
Block a user