chore: move DisplayConditionSettings to legacy

This commit is contained in:
amhsirak
2025-11-25 15:56:51 +05:30
parent 1f8a9cc41c
commit 6f60e67a54
2 changed files with 6 additions and 6 deletions

View File

@@ -1,10 +1,10 @@
import React from "react"; import React from "react";
import { Dropdown as MuiDropdown } from "../ui/DropdownMui"; import { Dropdown as MuiDropdown } from "../../src/components/ui/DropdownMui";
import { Checkbox, FormControlLabel, FormGroup, MenuItem, Stack, TextField } from "@mui/material"; import { Checkbox, FormControlLabel, FormGroup, MenuItem, Stack, TextField } from "@mui/material";
import { AddButton } from "../ui/buttons/AddButton"; import { AddButton } from "../../src/components/ui/buttons/AddButton";
import { RemoveButton } from "../ui/buttons/RemoveButton"; import { RemoveButton } from "../../src/components/ui/buttons/RemoveButton";
import { KeyValueForm } from "./KeyValueForm"; import { KeyValueForm } from "../../src/components/recorder/KeyValueForm";
import { WarningText } from "../ui/texts"; import { WarningText } from "../../src/components/ui/texts";
interface DisplayConditionSettingsProps { interface DisplayConditionSettingsProps {
whereProp: string; whereProp: string;

View File

@@ -8,7 +8,7 @@ import React, { useRef } from "react";
import { GenericModal } from "../ui/GenericModal"; import { GenericModal } from "../ui/GenericModal";
import { WhereWhatPair } from "maxun-core"; import { WhereWhatPair } from "maxun-core";
import { SelectChangeEvent } from "@mui/material/Select/Select"; import { SelectChangeEvent } from "@mui/material/Select/Select";
import { DisplayConditionSettings } from "./DisplayWhereConditionSettings"; import { DisplayConditionSettings } from "../../../legacy/src/DisplayWhereConditionSettings";
import { useSocketStore } from "../../context/socket"; import { useSocketStore } from "../../context/socket";
interface AddWhereCondModalProps { interface AddWhereCondModalProps {