diff --git a/src/Controls/Heatmap/Heatmap.ts b/src/Controls/Heatmap/Heatmap.ts
index 961cd6077..3cdc4589d 100644
--- a/src/Controls/Heatmap/Heatmap.ts
+++ b/src/Controls/Heatmap/Heatmap.ts
@@ -14,7 +14,7 @@ import {
HeatmapData,
LayoutSettings,
PartitionTimeStampToData,
- PortalTheme
+ PortalTheme,
} from "./HeatmapDatatypes";
export class Heatmap {
diff --git a/src/Explorer/Controls/DynamicList/dynamic-list.html b/src/Explorer/Controls/DynamicList/dynamic-list.html
index af5493f5a..08fbdfdf6 100644
--- a/src/Explorer/Controls/DynamicList/dynamic-list.html
+++ b/src/Explorer/Controls/DynamicList/dynamic-list.html
@@ -28,7 +28,8 @@
tabindex="0"
data-bind="click: addItem, event: { keydown: onAddItemKeyPress }"
>
-
+
+
diff --git a/src/Explorer/Panes/UploadItemsPane/__snapshots__/UploadItemsPane.test.tsx.snap b/src/Explorer/Panes/UploadItemsPane/__snapshots__/UploadItemsPane.test.tsx.snap
index c54ede712..c13f7f4ae 100644
--- a/src/Explorer/Panes/UploadItemsPane/__snapshots__/UploadItemsPane.test.tsx.snap
+++ b/src/Explorer/Panes/UploadItemsPane/__snapshots__/UploadItemsPane.test.tsx.snap
@@ -20,9 +20,7 @@ exports[`Upload Items Pane should render Default properly 1`] = `
multiple={true}
onUpload={[Function]}
tabIndex={0}
- tooltip="Select one or more JSON files to upload. Each file can contain a single JSON document or an array of JSON
- documents. The combined size of all files in an individual upload operation must be less than 2 MB. You
- can perform multiple upload operations for larger data sets."
+ tooltip="Select one or more JSON files to upload. Each file can contain a single JSON document or an array of JSON documents. The combined size of all files in an individual upload operation must be less than 2 MB. You can perform multiple upload operations for larger data sets."
/>
diff --git a/src/Explorer/Tabs/NotebookV2Tab.ts b/src/Explorer/Tabs/NotebookV2Tab.ts
index 4530a101b..534aee75c 100644
--- a/src/Explorer/Tabs/NotebookV2Tab.ts
+++ b/src/Explorer/Tabs/NotebookV2Tab.ts
@@ -166,7 +166,7 @@ export default class NotebookTabV2 extends NotebookTabBase {
{
iconSrc: null,
iconAlt: kernelLabel,
- onCommandClick: () => { },
+ onCommandClick: () => {},
commandButtonLabel: null,
hasPopup: false,
disabled: availableKernels.length < 1,
@@ -176,16 +176,16 @@ export default class NotebookTabV2 extends NotebookTabBase {
dropdownWidth: 100,
children: availableKernels.map(
(kernel: KernelSpecsDisplay) =>
- ({
- iconSrc: null,
- iconAlt: kernel.displayName,
- onCommandClick: () => this.notebookComponentAdapter.notebookChangeKernel(kernel.name),
- commandButtonLabel: kernel.displayName,
- dropdownItemKey: kernel.name,
- hasPopup: false,
- disabled: false,
- ariaLabel: kernel.displayName,
- } as CommandButtonComponentProps)
+ ({
+ iconSrc: null,
+ iconAlt: kernel.displayName,
+ onCommandClick: () => this.notebookComponentAdapter.notebookChangeKernel(kernel.name),
+ commandButtonLabel: kernel.displayName,
+ dropdownItemKey: kernel.name,
+ hasPopup: false,
+ disabled: false,
+ ariaLabel: kernel.displayName,
+ } as CommandButtonComponentProps)
),
ariaLabel: kernelLabel,
},
@@ -276,7 +276,7 @@ export default class NotebookTabV2 extends NotebookTabBase {
{
iconSrc: null,
iconAlt: null,
- onCommandClick: () => { },
+ onCommandClick: () => {},
commandButtonLabel: null,
ariaLabel: cellTypeLabel,
hasPopup: false,
@@ -364,7 +364,7 @@ export default class NotebookTabV2 extends NotebookTabBase {
iconSrc: null,
iconAlt: workspaceLabel,
ariaLabel: workspaceLabel,
- onCommandClick: () => { },
+ onCommandClick: () => {},
commandButtonLabel: null,
hasPopup: false,
disabled: this.container.arcadiaWorkspaces.length < 1,
diff --git a/src/Explorer/Tabs/QueryTab.ts b/src/Explorer/Tabs/QueryTab.ts
index 64ffa071e..2c6ba4d42 100644
--- a/src/Explorer/Tabs/QueryTab.ts
+++ b/src/Explorer/Tabs/QueryTab.ts
@@ -372,15 +372,15 @@ export default class QueryTab extends TabsBase implements ViewModels.WaitsForTem
aggregatedMetrics.documentLoadTime =
queryMetrics.documentLoadTime &&
this._normalize(queryMetrics.documentLoadTime.totalMilliseconds()) +
- this._normalize(aggregatedMetrics.documentLoadTime);
+ this._normalize(aggregatedMetrics.documentLoadTime);
aggregatedMetrics.documentWriteTime =
queryMetrics.documentWriteTime &&
this._normalize(queryMetrics.documentWriteTime.totalMilliseconds()) +
- this._normalize(aggregatedMetrics.documentWriteTime);
+ this._normalize(aggregatedMetrics.documentWriteTime);
aggregatedMetrics.indexHitDocumentCount =
queryMetrics.indexHitDocumentCount &&
this._normalize(queryMetrics.indexHitDocumentCount) +
- this._normalize(aggregatedMetrics.indexHitDocumentCount);
+ this._normalize(aggregatedMetrics.indexHitDocumentCount);
aggregatedMetrics.outputDocumentCount =
queryMetrics.outputDocumentCount &&
this._normalize(queryMetrics.outputDocumentCount) + this._normalize(aggregatedMetrics.outputDocumentCount);
@@ -390,36 +390,36 @@ export default class QueryTab extends TabsBase implements ViewModels.WaitsForTem
aggregatedMetrics.indexLookupTime =
queryMetrics.indexLookupTime &&
this._normalize(queryMetrics.indexLookupTime.totalMilliseconds()) +
- this._normalize(aggregatedMetrics.indexLookupTime);
+ this._normalize(aggregatedMetrics.indexLookupTime);
aggregatedMetrics.retrievedDocumentCount =
queryMetrics.retrievedDocumentCount &&
this._normalize(queryMetrics.retrievedDocumentCount) +
- this._normalize(aggregatedMetrics.retrievedDocumentCount);
+ this._normalize(aggregatedMetrics.retrievedDocumentCount);
aggregatedMetrics.retrievedDocumentSize =
queryMetrics.retrievedDocumentSize &&
this._normalize(queryMetrics.retrievedDocumentSize) +
- this._normalize(aggregatedMetrics.retrievedDocumentSize);
+ this._normalize(aggregatedMetrics.retrievedDocumentSize);
aggregatedMetrics.vmExecutionTime =
queryMetrics.vmExecutionTime &&
this._normalize(queryMetrics.vmExecutionTime.totalMilliseconds()) +
- this._normalize(aggregatedMetrics.vmExecutionTime);
+ this._normalize(aggregatedMetrics.vmExecutionTime);
aggregatedMetrics.totalQueryExecutionTime =
queryMetrics.totalQueryExecutionTime &&
this._normalize(queryMetrics.totalQueryExecutionTime.totalMilliseconds()) +
- this._normalize(aggregatedMetrics.totalQueryExecutionTime);
+ this._normalize(aggregatedMetrics.totalQueryExecutionTime);
aggregatedMetrics.runtimeExecutionTimes.queryEngineExecutionTime =
aggregatedMetrics.runtimeExecutionTimes &&
this._normalize(queryMetrics.runtimeExecutionTimes.queryEngineExecutionTime.totalMilliseconds()) +
- this._normalize(aggregatedMetrics.runtimeExecutionTimes.queryEngineExecutionTime);
+ this._normalize(aggregatedMetrics.runtimeExecutionTimes.queryEngineExecutionTime);
aggregatedMetrics.runtimeExecutionTimes.systemFunctionExecutionTime =
aggregatedMetrics.runtimeExecutionTimes &&
this._normalize(queryMetrics.runtimeExecutionTimes.systemFunctionExecutionTime.totalMilliseconds()) +
- this._normalize(aggregatedMetrics.runtimeExecutionTimes.systemFunctionExecutionTime);
+ this._normalize(aggregatedMetrics.runtimeExecutionTimes.systemFunctionExecutionTime);
aggregatedMetrics.runtimeExecutionTimes.userDefinedFunctionExecutionTime =
aggregatedMetrics.runtimeExecutionTimes &&
this._normalize(queryMetrics.runtimeExecutionTimes.userDefinedFunctionExecutionTime.totalMilliseconds()) +
- this._normalize(aggregatedMetrics.runtimeExecutionTimes.userDefinedFunctionExecutionTime);
+ this._normalize(aggregatedMetrics.runtimeExecutionTimes.userDefinedFunctionExecutionTime);
}
});
@@ -537,14 +537,14 @@ export default class QueryTab extends TabsBase implements ViewModels.WaitsForTem
queryMetric.indexLookupTime && queryMetric.indexLookupTime.totalMilliseconds(),
queryMetric.documentLoadTime && queryMetric.documentLoadTime.totalMilliseconds(),
queryMetric.runtimeExecutionTimes &&
- queryMetric.runtimeExecutionTimes.queryEngineExecutionTime &&
- queryMetric.runtimeExecutionTimes.queryEngineExecutionTime.totalMilliseconds(),
+ queryMetric.runtimeExecutionTimes.queryEngineExecutionTime &&
+ queryMetric.runtimeExecutionTimes.queryEngineExecutionTime.totalMilliseconds(),
queryMetric.runtimeExecutionTimes &&
- queryMetric.runtimeExecutionTimes.systemFunctionExecutionTime &&
- queryMetric.runtimeExecutionTimes.systemFunctionExecutionTime.totalMilliseconds(),
+ queryMetric.runtimeExecutionTimes.systemFunctionExecutionTime &&
+ queryMetric.runtimeExecutionTimes.systemFunctionExecutionTime.totalMilliseconds(),
queryMetric.runtimeExecutionTimes &&
- queryMetric.runtimeExecutionTimes.userDefinedFunctionExecutionTime &&
- queryMetric.runtimeExecutionTimes.userDefinedFunctionExecutionTime.totalMilliseconds(),
+ queryMetric.runtimeExecutionTimes.userDefinedFunctionExecutionTime &&
+ queryMetric.runtimeExecutionTimes.userDefinedFunctionExecutionTime.totalMilliseconds(),
queryMetric.documentWriteTime && queryMetric.documentWriteTime.totalMilliseconds(),
].join(",") + "\n";
csvData = csvData + partitionKeyRangeData;
diff --git a/src/Explorer/Tabs/QueryTablesTab.html b/src/Explorer/Tabs/QueryTablesTab.html
index 9d5d5bf95..f7f1942b1 100644
--- a/src/Explorer/Tabs/QueryTablesTab.html
+++ b/src/Explorer/Tabs/QueryTablesTab.html
@@ -100,7 +100,11 @@
>