fix(xo-web/ips): fix the range formatting (#5314)

Fixes #3170
This commit is contained in:
Mathieu
2020-10-09 17:15:50 +02:00
committed by GitHub
parent 009a0c5703
commit 7a6aec34ae
2 changed files with 2 additions and 1 deletions

View File

@@ -25,6 +25,7 @@
- [Home] Hide backup filter for non-admin users [#5285](https://github.com/vatesfr/xen-orchestra/issues/5285) (PR [#5264](https://github.com/vatesfr/xen-orchestra/pull/5264))
- [Backup/S3] Fix request signature error [#5253](https://github.com/vatesfr/xen-orchestra/issues/5253) (PR[#5315](https://github.com/vatesfr/xen-orchestra/pull/5315))
- [SDN Controller] Fix tunnel traffic going on the wrong NIC: see https://xcp-ng.org/forum/topic/3544/mtu-problems-with-vxlan. (PR [#5281](https://github.com/vatesfr/xen-orchestra/pull/5281))
- [Settings/IP Pools] Fix some IP ranges being split into multiple ranges in the UI [#3170](https://github.com/vatesfr/xen-orchestra/issues/3170) (PR [#5314](https://github.com/vatesfr/xen-orchestra/pull/5314))
### Packages to release

View File

@@ -65,7 +65,7 @@ export const getNextIpV4 = ip => {
index = i
return false
}
splitIp[i] = 1
splitIp[i] = 0
})
if (index === 0 && +splitIp[0] === 255) {
return 0