re org
This commit is contained in:
@@ -200,7 +200,8 @@ export default function App() {
|
||||
<Route path="/automation" element={<Navigate to="/automation/overview" replace />} />
|
||||
<Route path="/automation/overview" element={<AutomationOverview />} />
|
||||
<Route path="/automation/runs/:runId" element={<AutomationRunDetail />} />
|
||||
<Route path="/automation/settings" element={<PipelineSettings />} />
|
||||
{/* automation/settings removed - now in Site Settings > Automation tab */}
|
||||
<Route path="/automation/settings" element={<Navigate to="/sites/settings?tab=automation" replace />} />
|
||||
<Route path="/automation/run" element={<AutomationPage />} />
|
||||
|
||||
{/* Publisher Module - Content Calendar */}
|
||||
|
||||
@@ -170,7 +170,6 @@ const AppSidebar: React.FC = () => {
|
||||
name: "Automation",
|
||||
subItems: [
|
||||
{ name: "Overview", path: "/automation/overview" },
|
||||
{ name: "Settings", path: "/automation/settings" },
|
||||
{ name: "Run Now (Manual)", path: "/automation/run" },
|
||||
],
|
||||
});
|
||||
|
||||
@@ -619,7 +619,7 @@ const AutomationPage: React.FC = () => {
|
||||
|
||||
<div className="flex items-center gap-2">
|
||||
<Button
|
||||
onClick={() => window.location.href = '/automation/settings'}
|
||||
onClick={() => window.location.href = '/sites/settings?tab=automation'}
|
||||
variant="outline"
|
||||
tone="brand"
|
||||
size="sm"
|
||||
|
||||
Reference in New Issue
Block a user