From 8f9d6a4c1328dbf35580ecae1b51da1dbca4907c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonas=20Dre=C3=9Fler?= Date: Tue, 16 Feb 2021 14:26:12 +0100 Subject: [PATCH] appDisplay: Use new indentation style Otherwise eslint will complain about the next commit. Part-of: --- js/ui/appDisplay.js | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/js/ui/appDisplay.js b/js/ui/appDisplay.js index 69b4d0fff..72e0e5379 100644 --- a/js/ui/appDisplay.js +++ b/js/ui/appDisplay.js @@ -1430,10 +1430,12 @@ var AppSearchProvider = class AppSearchProvider { let name = this._systemActions.getName(id); let iconName = this._systemActions.getIconName(id); - let createIcon = size => new St.Icon({ icon_name: iconName, - width: size, - height: size, - style_class: 'system-action-icon' }); + const createIcon = size => new St.Icon({ + icon_name: iconName, + width: size, + height: size, + style_class: 'system-action-icon', + }); metas.push({ id, name, createIcon }); }