From 78e9ac1fd810023b738f4f5829f8a701c052b951 Mon Sep 17 00:00:00 2001 From: amhsirak Date: Thu, 9 Jan 2025 20:15:27 +0530 Subject: [PATCH] feat: create action ui directory --- src/components/{molecules => action}/ActionDescriptionBox.tsx | 0 src/components/{molecules => action}/ActionSettings.tsx | 0 src/components/{molecules => action}/action-settings/index.ts | 0 src/components/{molecules => action}/action-settings/scrape.tsx | 0 .../{molecules => action}/action-settings/scrapeSchema.tsx | 0 .../{molecules => action}/action-settings/screenshot.tsx | 0 src/components/{molecules => action}/action-settings/scroll.tsx | 0 src/components/recorder/RightSidePanel.tsx | 2 +- 8 files changed, 1 insertion(+), 1 deletion(-) rename src/components/{molecules => action}/ActionDescriptionBox.tsx (100%) rename src/components/{molecules => action}/ActionSettings.tsx (100%) rename src/components/{molecules => action}/action-settings/index.ts (100%) rename src/components/{molecules => action}/action-settings/scrape.tsx (100%) rename src/components/{molecules => action}/action-settings/scrapeSchema.tsx (100%) rename src/components/{molecules => action}/action-settings/screenshot.tsx (100%) rename src/components/{molecules => action}/action-settings/scroll.tsx (100%) diff --git a/src/components/molecules/ActionDescriptionBox.tsx b/src/components/action/ActionDescriptionBox.tsx similarity index 100% rename from src/components/molecules/ActionDescriptionBox.tsx rename to src/components/action/ActionDescriptionBox.tsx diff --git a/src/components/molecules/ActionSettings.tsx b/src/components/action/ActionSettings.tsx similarity index 100% rename from src/components/molecules/ActionSettings.tsx rename to src/components/action/ActionSettings.tsx diff --git a/src/components/molecules/action-settings/index.ts b/src/components/action/action-settings/index.ts similarity index 100% rename from src/components/molecules/action-settings/index.ts rename to src/components/action/action-settings/index.ts diff --git a/src/components/molecules/action-settings/scrape.tsx b/src/components/action/action-settings/scrape.tsx similarity index 100% rename from src/components/molecules/action-settings/scrape.tsx rename to src/components/action/action-settings/scrape.tsx diff --git a/src/components/molecules/action-settings/scrapeSchema.tsx b/src/components/action/action-settings/scrapeSchema.tsx similarity index 100% rename from src/components/molecules/action-settings/scrapeSchema.tsx rename to src/components/action/action-settings/scrapeSchema.tsx diff --git a/src/components/molecules/action-settings/screenshot.tsx b/src/components/action/action-settings/screenshot.tsx similarity index 100% rename from src/components/molecules/action-settings/screenshot.tsx rename to src/components/action/action-settings/screenshot.tsx diff --git a/src/components/molecules/action-settings/scroll.tsx b/src/components/action/action-settings/scroll.tsx similarity index 100% rename from src/components/molecules/action-settings/scroll.tsx rename to src/components/action/action-settings/scroll.tsx diff --git a/src/components/recorder/RightSidePanel.tsx b/src/components/recorder/RightSidePanel.tsx index 5b5b5760..c5478254 100644 --- a/src/components/recorder/RightSidePanel.tsx +++ b/src/components/recorder/RightSidePanel.tsx @@ -21,7 +21,7 @@ import RadioGroup from '@mui/material/RadioGroup'; import { emptyWorkflow } from "../../shared/constants"; import { getActiveWorkflow } from "../../api/workflow"; import DeleteIcon from '@mui/icons-material/Delete'; -import ActionDescriptionBox from '../molecules/ActionDescriptionBox'; +import ActionDescriptionBox from '../action/ActionDescriptionBox'; import { useThemeMode } from '../../context/theme-provider'; import { useTranslation } from 'react-i18next';