From ccc8eb16861634bae2457684d519c338aa91ac6a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Carlos=20Mart=C3=ADn?= Date: Thu, 18 Aug 2016 16:57:36 +0200 Subject: [PATCH] Bug #4726: Fix error message when a host is not selected on migrate --- src/sunstone/public/app/tabs/vms-tab/dialogs/migrate.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sunstone/public/app/tabs/vms-tab/dialogs/migrate.js b/src/sunstone/public/app/tabs/vms-tab/dialogs/migrate.js index ac554fae91..94d29a1347 100644 --- a/src/sunstone/public/app/tabs/vms-tab/dialogs/migrate.js +++ b/src/sunstone/public/app/tabs/vms-tab/dialogs/migrate.js @@ -90,7 +90,7 @@ define(function(require) { if ($("#selected_resource_id_migrate_vm", context).val()) { extra_info['host_id'] = $("#selected_resource_id_migrate_vm", context).val(); } else { - notifyError(Locale.tr("You have not selected a host")); + Notifier.notifyError(Locale.tr("You have not selected a host")); return false; }