Trim trailing whitespace in Core/Ui/Object/Action.ts
authorTim Düsterhus <duesterhus@woltlab.com>
Wed, 25 Aug 2021 07:19:28 +0000 (09:19 +0200)
committerTim Düsterhus <duesterhus@woltlab.com>
Wed, 25 Aug 2021 07:19:28 +0000 (09:19 +0200)
ts/WoltLabSuite/Core/Ui/Object/Action.ts

index 34599d3be51edab228d7a282741fd5ad214823de..9b9986b9e8ff4a4a13cc802bda324a5c9c454e6a 100644 (file)
@@ -22,7 +22,7 @@ const actionSelector = ".jsObjectAction[data-object-action]";
 
 function executeAction(event: Event): void {
   event.preventDefault();
-  
+
   const actionElement = event.currentTarget as HTMLElement;
   const objectAction = actionElement.dataset.objectAction!;