mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2026-01-08 12:24:13 +01:00
Fix :set! value completion.
This commit is contained in:
@@ -926,7 +926,7 @@ const Options = Module("options", {
|
|||||||
context.completions = [
|
context.completions = [
|
||||||
[prefs.get(filter), "Current Value"],
|
[prefs.get(filter), "Current Value"],
|
||||||
[prefs.getDefault(filter), "Default Value"]
|
[prefs.getDefault(filter), "Default Value"]
|
||||||
].filter(function ([k]) k != null && k.length < 200);
|
].filter(function (k) k[0] != null && String(k[0]).length < 200);
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user