Make Telemetry.ts lowercase
This commit is contained in:
@@ -11,7 +11,7 @@ import {
|
||||
ResultSeverity,
|
||||
} from "../../../remote-queries/shared/analysis-result";
|
||||
import { CodePathsOverlay } from "./CodePathsOverlay";
|
||||
import { useStateWithTelemetry } from "../Telemetry";
|
||||
import { useStateWithTelemetry } from "../telemetry";
|
||||
|
||||
const ShowPathsLink = styled(VSCodeLink)`
|
||||
cursor: pointer;
|
||||
|
||||
@@ -6,7 +6,7 @@ import {
|
||||
CodeFlow,
|
||||
ResultSeverity,
|
||||
} from "../../../remote-queries/shared/analysis-result";
|
||||
import { useStateWithTelemetry } from "../Telemetry";
|
||||
import { useStateWithTelemetry } from "../telemetry";
|
||||
import { SectionTitle } from "../SectionTitle";
|
||||
import { VerticalSpace } from "../VerticalSpace";
|
||||
import { CodeFlowsDropdown } from "./CodeFlowsDropdown";
|
||||
|
||||
@@ -8,7 +8,7 @@ import {
|
||||
} from "../../../remote-queries/shared/analysis-result";
|
||||
import { createRemoteFileRef } from "../../../pure/location-link-utils";
|
||||
import { VerticalSpace } from "../VerticalSpace";
|
||||
import { sendTelemetry } from "../Telemetry";
|
||||
import { sendTelemetry } from "../telemetry";
|
||||
|
||||
const getSeverityColor = (severity: ResultSeverity) => {
|
||||
switch (severity) {
|
||||
|
||||
@@ -12,7 +12,7 @@ import {
|
||||
import { createRemoteFileRef } from "../../../pure/location-link-utils";
|
||||
import { CodeSnippetMessage } from "./CodeSnippetMessage";
|
||||
import { CodeSnippetLine } from "./CodeSnippetLine";
|
||||
import { sendTelemetry } from "../Telemetry";
|
||||
import { sendTelemetry } from "../telemetry";
|
||||
|
||||
const borderColor = "var(--vscode-editor-snippetFinalTabstopHighlightBorder)";
|
||||
|
||||
|
||||
@@ -9,7 +9,7 @@ import {
|
||||
import { tryGetRemoteLocation } from "../../pure/bqrs-utils";
|
||||
import TextButton from "./TextButton";
|
||||
import { convertNonPrintableChars } from "../../text-utils";
|
||||
import { sendTelemetry, useStateWithTelemetry } from "../common/Telemetry";
|
||||
import { sendTelemetry, useStateWithTelemetry } from "../common/telemetry";
|
||||
|
||||
const numOfResultsInContractedMode = 5;
|
||||
|
||||
|
||||
@@ -24,7 +24,7 @@ import { vscode } from "../vscode-api";
|
||||
import { AnalyzedRepoItemContent } from "./AnalyzedRepoItemContent";
|
||||
import StarCount from "../common/StarCount";
|
||||
import { LastUpdated } from "../common/LastUpdated";
|
||||
import { useStateWithTelemetry } from "../common/Telemetry";
|
||||
import { useStateWithTelemetry } from "../common/telemetry";
|
||||
|
||||
// This will ensure that these icons have a className which we can use in the TitleContainer
|
||||
const ExpandCollapseCodicon = styled(Codicon)``;
|
||||
|
||||
@@ -16,7 +16,7 @@ import {
|
||||
defaultFilterSortState,
|
||||
RepositoriesFilterSortState,
|
||||
} from "../../pure/variant-analysis-filter-sort";
|
||||
import { useStateWithTelemetry } from "../common/Telemetry";
|
||||
import { useStateWithTelemetry } from "../common/telemetry";
|
||||
|
||||
export type VariantAnalysisProps = {
|
||||
variantAnalysis?: VariantAnalysisDomainModel;
|
||||
|
||||
Reference in New Issue
Block a user