mirror of
https://github.com/pds-nest/nest.git
synced 2024-11-25 14:34:19 +00:00
✏ Fix typos
This commit is contained in:
parent
d1ae9f79cf
commit
c37bc63d13
1 changed files with 6 additions and 6 deletions
|
@ -41,7 +41,7 @@ export default function BoxRepositoryCreate({ ...props }) {
|
||||||
save()
|
save()
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
<FormLabel htmlFor={"repo-name"} text={"Nome della repository"}>
|
<FormLabel htmlFor={"repo-name"} text={"Nome repository"}>
|
||||||
<InputWithIcon
|
<InputWithIcon
|
||||||
id={"repo-name"}
|
id={"repo-name"}
|
||||||
icon={faFolder}
|
icon={faFolder}
|
||||||
|
@ -49,14 +49,14 @@ export default function BoxRepositoryCreate({ ...props }) {
|
||||||
onChange={e => setName(e.target.value)}
|
onChange={e => setName(e.target.value)}
|
||||||
/>
|
/>
|
||||||
</FormLabel>
|
</FormLabel>
|
||||||
<FormLabel htmlFor={"filter-mode"} text={"Aggiutngi tweet se soddisfano:"}>
|
<FormLabel htmlFor={"filter-mode"} text={"Richiedi"}>
|
||||||
<label>
|
<label>
|
||||||
<Radio
|
<Radio
|
||||||
name={"filter-mode"}
|
name={"filter-mode"}
|
||||||
onChange={() => setEvaluationMode(0)}
|
onChange={() => setEvaluationMode(0)}
|
||||||
checked={evaluationMode === 0}
|
checked={evaluationMode === 0}
|
||||||
/>
|
/>
|
||||||
Un filtro
|
Almeno una cond.
|
||||||
</label>
|
</label>
|
||||||
|
|
||||||
<label>
|
<label>
|
||||||
|
@ -65,7 +65,7 @@ export default function BoxRepositoryCreate({ ...props }) {
|
||||||
onChange={() => setEvaluationMode(1)}
|
onChange={() => setEvaluationMode(1)}
|
||||||
checked={evaluationMode === 1}
|
checked={evaluationMode === 1}
|
||||||
/>
|
/>
|
||||||
Tutti i filtri
|
Tutte le cond.
|
||||||
</label>
|
</label>
|
||||||
</FormLabel>
|
</FormLabel>
|
||||||
{error ?
|
{error ?
|
||||||
|
@ -81,7 +81,7 @@ export default function BoxRepositoryCreate({ ...props }) {
|
||||||
color={"Red"}
|
color={"Red"}
|
||||||
onClick={() => revert()}
|
onClick={() => revert()}
|
||||||
>
|
>
|
||||||
Rollback edits
|
Annulla modifiche
|
||||||
</Button>
|
</Button>
|
||||||
<Button
|
<Button
|
||||||
style={{ "gridColumn": "2" }}
|
style={{ "gridColumn": "2" }}
|
||||||
|
@ -89,7 +89,7 @@ export default function BoxRepositoryCreate({ ...props }) {
|
||||||
color={"Green"}
|
color={"Green"}
|
||||||
onClick={_ => goToOnSuccess(save, history, "/repositories")()}
|
onClick={_ => goToOnSuccess(save, history, "/repositories")()}
|
||||||
>
|
>
|
||||||
Save changes
|
Salva modifiche
|
||||||
</Button>
|
</Button>
|
||||||
</>
|
</>
|
||||||
:
|
:
|
||||||
|
|
Loading…
Reference in a new issue