[gnome-shell/wip/carlosg/osk-emoji-and-keypad: 28/34] keyboard: Fix JS warning



commit a2a2b0694e2360c55c7c88063ecefaff1c50a713
Author: Carlos Garnacho <carlosg gnome org>
Date:   Mon Jan 21 21:40:59 2019 +0100

    keyboard: Fix JS warning
    
    The label field may be empty here (eg. buttons fully styled through css),
    just resort to an empty string then.

 js/ui/keyboard.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
---
diff --git a/js/ui/keyboard.js b/js/ui/keyboard.js
index cbfdb0914..a37580b32 100644
--- a/js/ui/keyboard.js
+++ b/js/ui/keyboard.js
@@ -802,7 +802,7 @@ var Keyboard = class Keyboard {
             let switchToLevel = key.level;
             let action = key.action;
 
-            extraButton = new Key(key.label, []);
+            extraButton = new Key(key.label || '', []);
 
             extraButton.keyButton.add_style_class_name('default-key');
             if (key.extraClassName != null)


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]