Skip to content

Commit

Permalink
add uuid to looker
Browse files Browse the repository at this point in the history
  • Loading branch information
sashankaryal committed Feb 6, 2025
1 parent b297586 commit a7d8823
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion app/packages/looker/src/lookers/abstract.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ import {
withPath,
} from "@fiftyone/utilities";
import { isEmpty } from "lodash";
import { v4 as uuid } from "uuid";
import {
BASE_ALPHA,
DASH_LENGTH,
Expand Down Expand Up @@ -43,6 +42,7 @@ import {
mergeUpdates,
snapBox,
} from "../util";
import { v4 as uuid } from "uuid";
import { ProcessSample } from "../worker";
import { AsyncLabelsRenderingManager } from "../worker/async-labels-rendering-manager";
import { LookerUtils } from "./shared";
Expand Down Expand Up @@ -105,6 +105,8 @@ export abstract class AbstractLooker<
private isBatching = false;
private isCommittingBatchUpdates = false;

public uuid = uuid();

/** @internal */
state: State;

Expand Down

0 comments on commit a7d8823

Please sign in to comment.