parent
fdeab86a87
commit
fc81cf4d70
@ -14,6 +14,7 @@
|
|||||||
> Users must be able to say: “I had this issue, happy to know it's fixed”
|
> Users must be able to say: “I had this issue, happy to know it's fixed”
|
||||||
|
|
||||||
- [XOA/Notifications] Don't show expired notifications (PR [#5304](https://github.com/vatesfr/xen-orchestra/pull/5304))
|
- [XOA/Notifications] Don't show expired notifications (PR [#5304](https://github.com/vatesfr/xen-orchestra/pull/5304))
|
||||||
|
- [Backup/S3] Fix secret key edit form [#5233](https://github.com/vatesfr/xen-orchestra/issues/5233) (PR[#5305](https://github.com/vatesfr/xen-orchestra/pull/5305))
|
||||||
|
|
||||||
### Packages to release
|
### Packages to release
|
||||||
|
|
||||||
|
@ -139,6 +139,9 @@ export default decorate([
|
|||||||
.then(reset)
|
.then(reset)
|
||||||
.catch(err => error('Create Remote', err.message || String(err)))
|
.catch(err => error('Create Remote', err.message || String(err)))
|
||||||
},
|
},
|
||||||
|
setSecretKey(_, { target: { value } }) {
|
||||||
|
this.state.password = value
|
||||||
|
},
|
||||||
},
|
},
|
||||||
computed: {
|
computed: {
|
||||||
formId: generateId,
|
formId: generateId,
|
||||||
@ -414,11 +417,11 @@ export default decorate([
|
|||||||
<input
|
<input
|
||||||
className='form-control'
|
className='form-control'
|
||||||
name='password'
|
name='password'
|
||||||
onChange={effects.linkState}
|
onChange={effects.setSecretKey}
|
||||||
placeholder='Secret access key'
|
placeholder='Paste secret here to change it'
|
||||||
|
autoComplete='off'
|
||||||
required
|
required
|
||||||
type='text'
|
type='text'
|
||||||
value={password}
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</fieldset>
|
</fieldset>
|
||||||
|
Loading…
Reference in New Issue
Block a user