diff --git a/react-components/src/components/Architecture/RevealButtons.tsx b/react-components/src/components/Architecture/RevealButtons.tsx index 8355b47be2a..ae30c699054 100644 --- a/react-components/src/components/Architecture/RevealButtons.tsx +++ b/react-components/src/components/Architecture/RevealButtons.tsx @@ -14,11 +14,15 @@ import { KeyboardSpeedCommand } from '../../architecture/base/concreteCommands/K import { ObservationsTool } from '../../architecture/concrete/observations/ObservationsTool'; import { createButtonFromCommandConstructor } from './CommandButtons'; import { SettingsCommand } from '../../architecture/base/concreteCommands/SettingsCommand'; +import { PointCloudFilterCommand } from '../../architecture'; export class RevealButtons { static Settings = (): ReactElement => createButtonFromCommandConstructor(() => new SettingsCommand()); + static PointCloudFilter = (): ReactElement => + createButtonFromCommandConstructor(() => new PointCloudFilterCommand()); + static FitView = (): ReactElement => createButtonFromCommandConstructor(() => new FitViewCommand());