1
0
mirror of https://github.com/OpenNebula/one.git synced 2025-03-23 22:50:09 +03:00

Feature #3748: Fix button.tip in confirm-with-select.js

This commit is contained in:
Carlos Martín 2015-06-03 18:25:58 +02:00
parent ebed782763
commit e67b22a7fe

View File

@ -88,7 +88,7 @@ define(function(require) {
var button = Sunstone.getButton(tabId, actionId);
var tip = Locale.tr("You have to confirm this action");
if (button.tip == undefined) {
if (button.tip) {
tip = button.tip
}