[Kimchi-devel] [PATCH] [Kimchi] Fixed issue #1074 IP address for the guest under Interfaces tab is blank
Aline Manera
alinefm at linux.vnet.ibm.com
Fri Nov 4 19:37:18 UTC 2016
Hi,
This patch only works when adding a new interface. After closing the
editing dialog and reopening it, the 'IP Address' column will be
displayed in blank.
IMO it should also display 'unavailable' in this case.
On 11/02/2016 05:29 AM, rajgupta at linux.vnet.ibm.com wrote:
> From: Rajat Gupta <rajat.triumph at gmail.com>
>
> If IP address is not define it will show "unavailable" for the guest under Interfaces tab
>
> Signed-off-by: Rajat Gupta <rajat.triumph at gmail.com>
> ---
> ui/js/src/kimchi.guest_edit_main.js | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/ui/js/src/kimchi.guest_edit_main.js b/ui/js/src/kimchi.guest_edit_main.js
> index 9669d08..d5e32a1 100644
> --- a/ui/js/src/kimchi.guest_edit_main.js
> +++ b/ui/js/src/kimchi.guest_edit_main.js
> @@ -206,7 +206,7 @@ kimchi.guest_edit_main = function() {
> if (data.id === -1) {
> data.id = $('#form-guest-edit-interface > .body').children().size();
> }
> - if (data.ips === "" || data.ips === null) {
> + if (data.ips === "" || data.ips === null || data.ips === undefined) {
> data.ips = i18n["KCHNET6001M"];
> } else {
> data.ips = data.ips;
More information about the Kimchi-devel
mailing list