fix: add missing comma

This commit is contained in:
Alex 2020-04-06 12:49:41 +02:00
parent 27fbea2b5a
commit 7c4ea39774
1 changed files with 1 additions and 1 deletions

View File

@ -162,7 +162,7 @@ auto Workspaces::update() -> void {
auto format = config_["format"].asString();
output = fmt::format(format,
fmt::arg("icon", getIcon(output, *it)),
fmt::arg("value", output)
fmt::arg("value", output),
fmt::arg("name", trimWorkspaceName(output)),
fmt::arg("index", (*it)["num"].asString()));
}