stg v0.4.7

This commit is contained in:
Hugo Lextrait 2023-04-18 12:38:31 +02:00
parent 3a79264f76
commit 067eabb9ac
3 changed files with 9 additions and 4 deletions

View File

@ -21,4 +21,4 @@ version: 0.0.1
# incremented each time you make changes to the application. Versions are not expected to # incremented each time you make changes to the application. Versions are not expected to
# follow Semantic Versioning. They should reflect the version the application is using. # follow Semantic Versioning. They should reflect the version the application is using.
# It is recommended to use it with quotes. # It is recommended to use it with quotes.
appVersion: 0.4.6 appVersion: 0.4.7

View File

@ -53,10 +53,15 @@ class AddClientToFolderClass extends BasePage<IProps, IState> {
<RadioBox <RadioBox
name="client" name="client"
onChange={this.onExistingClientSelected} onChange={this.onExistingClientSelected}
defaultChecked={this.state.isExistingClientSelected}> defaultChecked={this.state.isExistingClientSelected}
value={"existing client"}>
<Typography typo={ITypo.P_ERR_18}>Client existant</Typography> <Typography typo={ITypo.P_ERR_18}>Client existant</Typography>
</RadioBox> </RadioBox>
<RadioBox name="client" onChange={this.onNewClientSelected} defaultChecked={this.state.isNewClientSelected}> <RadioBox
name="client"
onChange={this.onNewClientSelected}
defaultChecked={this.state.isNewClientSelected}
value={"new client"}>
<Typography typo={ITypo.P_ERR_18}>Nouveau client</Typography> <Typography typo={ITypo.P_ERR_18}>Nouveau client</Typography>
</RadioBox> </RadioBox>
</div> </div>

View File

@ -1,3 +1,3 @@
{ {
"version": "v0.4.6" "version": "v0.4.7"
} }