Merge branch 'gridstack' of https://github.com/manuel-rw/homarr into gridstack

This commit is contained in:
Meierschlumpf
2022-12-20 09:05:54 +01:00
17 changed files with 59 additions and 49 deletions

View File

@@ -92,9 +92,9 @@ export const WidgetsEditModal = ({
<Group position="right">
<Button onClick={() => context.closeModal(id)} variant="light">
{t('common:actions.cancel')}
{t('common:cancel')}
</Button>
<Button onClick={handleSave}>{t('common:actions.save')}</Button>
<Button onClick={handleSave}>{t('common:save')}</Button>
</Group>
</Stack>
);

View File

@@ -35,9 +35,9 @@ export const WidgetsRemoveModal = ({
<Text>{t('descriptor.remove.confirm')}</Text>
<Group position="right">
<Button onClick={() => context.closeModal(id)} variant="light">
{t('common:actions.cancel')}
{t('common:cancel')}
</Button>
<Button onClick={() => handleDeletion()}>{t('common:actions.ok')}</Button>
<Button onClick={() => handleDeletion()}>{t('common:ok')}</Button>
</Group>
</Stack>
);