fix: Add "as wide as possible" width to settings

This commit is contained in:
tecc 2023-03-12 09:39:06 +01:00
parent e356ea760f
commit fe4733efe9
No known key found for this signature in database
GPG Key ID: 400AAD881FCC028B

View File

@ -31,7 +31,12 @@ export const EditorWidth: FC = () => {
<MenuItem value={EDITOR_SIZE.SMALL}>
{t('Small (default)')}
</MenuItem>
<MenuItem value={EDITOR_SIZE.LARGE}>{t('Large')}</MenuItem>
<MenuItem value={EDITOR_SIZE.LARGE}>
{t('Large')}
</MenuItem>
<MenuItem value={EDITOR_SIZE.AS_WIDE_AS_POSSIBLE}>
{t('As wide as possible')}
</MenuItem>
</TextField>
);
};