mirror of
https://github.com/rowboatlabs/rowboat.git
synced 2026-05-25 18:55:19 +02:00
Set show vizualisation feature flag to false
This commit is contained in:
parent
b12561d1aa
commit
d0cd917d06
2 changed files with 18 additions and 15 deletions
|
|
@ -17,3 +17,4 @@ export const USE_PRODUCT_TOUR = false;
|
||||||
export const SHOW_COPILOT_MARQUEE = false;
|
export const SHOW_COPILOT_MARQUEE = false;
|
||||||
export const SHOW_PROMPTS_SECTION = false;
|
export const SHOW_PROMPTS_SECTION = false;
|
||||||
export const SHOW_DARK_MODE_TOGGLE = false;
|
export const SHOW_DARK_MODE_TOGGLE = false;
|
||||||
|
export const SHOW_VISUALIZATION = false
|
||||||
|
|
@ -25,7 +25,7 @@ import { deleteDataSource } from '../../../actions/datasource_actions';
|
||||||
import { ToolkitAuthModal } from '../tools/components/ToolkitAuthModal';
|
import { ToolkitAuthModal } from '../tools/components/ToolkitAuthModal';
|
||||||
import { deleteConnectedAccount } from '@/app/actions/composio_actions';
|
import { deleteConnectedAccount } from '@/app/actions/composio_actions';
|
||||||
import { ProjectWideChangeConfirmationModal } from '@/components/common/project-wide-change-confirmation-modal';
|
import { ProjectWideChangeConfirmationModal } from '@/components/common/project-wide-change-confirmation-modal';
|
||||||
import { SHOW_PROMPTS_SECTION } from '../../../lib/feature_flags';
|
import { SHOW_PROMPTS_SECTION, SHOW_VISUALIZATION } from '../../../lib/feature_flags';
|
||||||
|
|
||||||
// Reduced gap size to match Cursor's UI
|
// Reduced gap size to match Cursor's UI
|
||||||
const GAP_SIZE = 4; // 1 unit * 4px (tailwind's default spacing unit)
|
const GAP_SIZE = 4; // 1 unit * 4px (tailwind's default spacing unit)
|
||||||
|
|
@ -698,19 +698,21 @@ export const EntityList = forwardRef<
|
||||||
<span>Agents</span>
|
<span>Agents</span>
|
||||||
</div>
|
</div>
|
||||||
<div className="flex items-center gap-1">
|
<div className="flex items-center gap-1">
|
||||||
<Button
|
{SHOW_VISUALIZATION && (
|
||||||
variant="secondary"
|
<Button
|
||||||
size="sm"
|
variant="secondary"
|
||||||
onClick={(e) => {
|
size="sm"
|
||||||
e.stopPropagation();
|
onClick={(e) => {
|
||||||
onShowVisualise("visualise");
|
e.stopPropagation();
|
||||||
}}
|
onShowVisualise("visualise");
|
||||||
className={`group ${buttonClasses}`}
|
}}
|
||||||
showHoverContent={true}
|
className={`group ${buttonClasses}`}
|
||||||
hoverContent="Visualise Agents"
|
showHoverContent={true}
|
||||||
>
|
hoverContent="Visualise Agents"
|
||||||
<Eye className="w-4 h-4" />
|
>
|
||||||
</Button>
|
<Eye className="w-4 h-4" />
|
||||||
|
</Button>
|
||||||
|
)}
|
||||||
<Button
|
<Button
|
||||||
variant="secondary"
|
variant="secondary"
|
||||||
size="sm"
|
size="sm"
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue