workspace-indicator: Fix whitespace error
We only want a single space before and after operators, not at least one. Unfortunately eslint only enforces the latter ... https://gitlab.gnome.org/GNOME/gnome-shell-extensions/merge_requests/71
This commit is contained in:
@@ -109,7 +109,7 @@ class WorkspaceIndicator extends PanelMenu.Button {
|
||||
_activate(index) {
|
||||
let workspaceManager = global.workspace_manager;
|
||||
|
||||
if (index >= 0 && index < workspaceManager.n_workspaces) {
|
||||
if (index >= 0 && index < workspaceManager.n_workspaces) {
|
||||
let metaWorkspace = workspaceManager.get_workspace_by_index(index);
|
||||
metaWorkspace.activate(global.get_current_time());
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user