[gnome-shell/wip/carlosg/osk-emoji-and-keypad: 33/40] 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: 33/40] keyboard: Fix JS warning
- Date: Sat, 26 Jan 2019 13:14:52 +0000 (UTC)
commit fa3817e1f2355433f6702dbf6c59dfd3f6c16332
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 4da7d7dcd..3bc99cd7f 100644
--- a/js/ui/keyboard.js
+++ b/js/ui/keyboard.js
@@ -803,7 +803,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]