ui: traffic-control: fix sending network value
we forgot to correclty send the network value as we changed from the radiogroup to a simple text field Signed-off-by: Dominik Csapak <d.csapak@proxmox.com> Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
This commit is contained in:
parent
16aab0c137
commit
963b7ec51b
@ -194,9 +194,9 @@ Ext.define('PBS.window.TrafficControlEdit', {
|
|||||||
let me = this;
|
let me = this;
|
||||||
let isCreate = me.up('window').isCreate;
|
let isCreate = me.up('window').isCreate;
|
||||||
|
|
||||||
if (!values['network-select']) {
|
if (!values.network) {
|
||||||
values.network = '0.0.0.0/0';
|
values.network = '0.0.0.0/0';
|
||||||
} else if (values.network) {
|
} else {
|
||||||
values.network = values.network.split(/\s*,\s*/);
|
values.network = values.network.split(/\s*,\s*/);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -442,10 +442,7 @@ Ext.define('PBS.window.TrafficControlEdit', {
|
|||||||
success: function(response) {
|
success: function(response) {
|
||||||
let data = response.result.data;
|
let data = response.result.data;
|
||||||
if (data.network?.length === 1 && data.network[0] === '0.0.0.0/0') {
|
if (data.network?.length === 1 && data.network[0] === '0.0.0.0/0') {
|
||||||
data['network-select'] = 'all';
|
|
||||||
delete data.network;
|
delete data.network;
|
||||||
} else {
|
|
||||||
data['network-select'] = 'limit';
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (Ext.isArray(data.timeframe)) {
|
if (Ext.isArray(data.timeframe)) {
|
||||||
|
Loading…
Reference in New Issue
Block a user