2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-06-17 04:25:42 +00:00

make info text better

This commit is contained in:
Matthias Mair
2025-01-20 21:56:47 +01:00
parent 0c40cb4a5a
commit ec8267f341

View File

@ -94,9 +94,13 @@ function EmailSection() {
<Grid> <Grid>
<Grid.Col span={6}> <Grid.Col span={6}>
{data.length == 0 ? ( {data.length == 0 ? (
<Text> <Alert
<Trans>Currently no email adreesses are registered</Trans> icon={<IconAlertCircle size='1rem' />}
</Text> title={t`Not configured`}
color='yellow'
>
<Trans>Currently no email addresses are registered.</Trans>
</Alert>
) : ( ) : (
<Radio.Group <Radio.Group
value={value} value={value}
@ -230,7 +234,7 @@ function ProviderSection({
title={t`Not configured`} title={t`Not configured`}
color='yellow' color='yellow'
> >
<Trans>There are no providers connected to this account. </Trans> <Trans>There are no providers connected to this account.</Trans>
</Alert> </Alert>
) : ( ) : (
<Stack> <Stack>