ui: Run ./ui/eslint-all --fix

Pure application of:
$ ./ui/eslint-all --fix
$ git cl format --js

Should be a noop assuming no bugs in --fix.

Change-Id: Iabd070ecb9381c9ee5db5aa44964b89a11a297f1
diff --git a/ui/src/controller/flamegraph_controller.ts b/ui/src/controller/flamegraph_controller.ts
index cb74e41..13f793a 100644
--- a/ui/src/controller/flamegraph_controller.ts
+++ b/ui/src/controller/flamegraph_controller.ts
@@ -23,19 +23,19 @@
   OBJECTS_ALLOCATED_KEY,
   OBJECTS_ALLOCATED_NOT_FREED_KEY,
   PERF_SAMPLES_KEY,
-  SPACE_MEMORY_ALLOCATED_NOT_FREED_KEY
+  SPACE_MEMORY_ALLOCATED_NOT_FREED_KEY,
 } from '../common/flamegraph_util';
 import {NUM, STR} from '../common/query_result';
 import {CallsiteInfo, FlamegraphState} from '../common/state';
 import {toNs} from '../common/time';
 import {
   FlamegraphDetails,
-  globals as frontendGlobals
+  globals as frontendGlobals,
 } from '../frontend/globals';
 import {publishFlamegraphDetails} from '../frontend/publish';
 import {
   Config as PerfSampleConfig,
-  PERF_SAMPLES_PROFILE_TRACK_KIND
+  PERF_SAMPLES_PROFILE_TRACK_KIND,
 } from '../tracks/perf_samples_profile/common';
 
 import {AreaSelectionHandler} from './area_selection_handler';
@@ -123,7 +123,7 @@
         startNs: toNs(area.startSec),
         endNs: toNs(area.endSec),
         type: 'perf',
-        viewingOption: PERF_SAMPLES_KEY
+        viewingOption: PERF_SAMPLES_KEY,
       }));
     }
     const selection = frontendGlobals.state.currentFlamegraphState;
@@ -381,7 +381,7 @@
         mapping,
         merged: false,
         highlighted,
-        location
+        location,
       });
     }
     return flamegraphData;