This commit is contained in:
Gabriel Almeida 2023-04-05 21:52:37 -03:00
commit 9d8b08d4a9
2 changed files with 3 additions and 1 deletions

View file

@ -50,7 +50,7 @@ export default function TabComponent({ selected, flow, onClick }:{flow:FlowType,
) : (
<div className="flex items-center gap-2">
<span
className="text-left truncate"
className="text-left w-32 truncate"
onDoubleClick={() => {
setIsRename(true);
setValue(flow.name);

View file

@ -76,6 +76,8 @@ export const nodeColors: {[char: string]: string} = {
chat: "#454173",
thought:"#272541",
docloaders:"#FF9135",
toolkits:"#DB2C2C",
wrappers:"#E6277A",
unknown:"#9CA3AF"
};