[gnome-shell/wip/carlosg/osk-emoji-and-keypad: 6/11] keyboard: Fix JS warning
- From: Carlos Garnacho <carlosg src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-shell/wip/carlosg/osk-emoji-and-keypad: 6/11] keyboard: Fix JS warning
- Date: Mon, 21 Jan 2019 22:29:00 +0000 (UTC)
commit 1e501986e73e16b99be2f4a08a5814cdd4d7b480
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 c58ab81e4..354544bd6 100644
--- a/js/ui/keyboard.js
+++ b/js/ui/keyboard.js
@@ -818,7 +818,7 @@ var Keyboard = new Lang.Class({
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]