1
0
mirror of https://github.com/OpenNebula/one.git synced 2025-03-21 14:50:08 +03:00

Bug #4726: Fix error message when a host is not selected on migrate

This commit is contained in:
Carlos Martín 2016-08-18 16:57:36 +02:00
parent e8a5c2826c
commit ccc8eb1686

View File

@ -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;
}