Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.unreleased.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,7 @@
- [Copy to clipboard] Fix button sometimes disappearing when trying to reach it (PR [#9059](https://github.com/vatesfr/xen-orchestra/pull/9059))
- [Plugins/SAML] Fix SAML authentication with audience matching (PR [#9093](https://github.com/vatesfr/xen-orchestra/pull/9093))
- [Backup/immutabiltiy] Fix double delete file that can block immutability lifting (PR [#9104](https://github.com/vatesfr/xen-orchestra/pull/9104))
- [VM/advanced] Fix error while changing running VM memory limit (PR [#9121](https://github.com/vatesfr/xen-orchestra/pull/9121))

- **XO 6**:
- [Site/Backups] Fix an issue properties of undefined in backups tab (PR [#9064](https://github.com/vatesfr/xen-orchestra/pull/9064))
Expand Down
3 changes: 2 additions & 1 deletion packages/xo-web/src/common/editable/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -466,7 +466,8 @@ export class Size extends Editable {
_saveIfUnfocused = () => {
this._focused = false
setTimeout(() => {
!this._focused && this._save()
// checking state.saving to avoid saving twice when unfocusing and pressing Enter
!this._focused && !this.state.saving && this._save()
}, 10)
}

Expand Down
Loading