[pve-devel] [PATCH pve-manager] sdn: evpn: allow empty primary exit node in zone form
Stefan Hanreich
s.hanreich at proxmox.com
Thu Feb 22 17:42:12 CET 2024
This was broken when adding a new EVPN zone and there's an easier way
built-in to our widget toolkit. I've taken the liberty of sending a v2
and mentioning you [1].
[1] https://lists.proxmox.com/pipermail/pve-devel/2024-February/061924.html
On 2/13/24 11:40, Alexandre Derumier wrote:
> It's broken since
> https://git.proxmox.com/?p=pve-network.git;a=commit;h=3e3cafabaf955d53c4c2d4e346bf5c3a5c6d1852
>
> Signed-off-by: Alexandre Derumier <aderumier at odiso.com>
> ---
> www/manager6/sdn/zones/EvpnEdit.js | 5 +++++
> 1 file changed, 5 insertions(+)
>
> diff --git a/www/manager6/sdn/zones/EvpnEdit.js b/www/manager6/sdn/zones/EvpnEdit.js
> index a08faef2..2e792322 100644
> --- a/www/manager6/sdn/zones/EvpnEdit.js
> +++ b/www/manager6/sdn/zones/EvpnEdit.js
> @@ -10,6 +10,11 @@ Ext.define('PVE.sdn.zones.EvpnInputPanel', {
> values.type = me.type;
> }
>
> + if (values['exitnodes-primary'] === '') {
> + delete values['exitnodes-primary'];
> + values.delete.push('exitnodes-primary');
> + }
> +
> return values;
> },
>
More information about the pve-devel
mailing list