Fix: wsIconMap is null issue. (#884)
This commit is contained in:
@@ -94,7 +94,7 @@ in
|
||||
settings = {
|
||||
layout = mkOption {
|
||||
type = jsonFormat.type;
|
||||
default = null;
|
||||
default = { };
|
||||
example = ''
|
||||
{
|
||||
"bar.layouts" = {
|
||||
@@ -359,8 +359,9 @@ in
|
||||
bar.workspaces.workspaces = mkIntOption 5;
|
||||
bar.workspaces.workspaceIconMap = mkOption {
|
||||
type = jsonFormat.type;
|
||||
default = null;
|
||||
default = { };
|
||||
example = ''
|
||||
{
|
||||
"1": "<U+EEFE>",
|
||||
"2": "<U+F269>",
|
||||
"3": "<U+EAC4>",
|
||||
@@ -368,6 +369,7 @@ in
|
||||
"5": "<U+F02B4>",
|
||||
"6": "<U+F1FF> ",
|
||||
"7": "<U+EB1C>"
|
||||
}
|
||||
'';
|
||||
};
|
||||
dummy = mkBoolOption true;
|
||||
|
||||
Reference in New Issue
Block a user