From 68f278553f19c79af7acf4fc8ea3f3d47a1f2d5f Mon Sep 17 00:00:00 2001 From: Gabriel Luiz Freitas Almeida Date: Wed, 14 Jun 2023 15:46:48 -0300 Subject: [PATCH] =?UTF-8?q?=F0=9F=9A=80=20feat(tabs):=20add=20save=20funct?= =?UTF-8?q?ion=20to=20TabsContextType=20The=20save=20function=20is=20added?= =?UTF-8?q?=20to=20TabsContextType=20to=20allow=20the=20saving=20of=20chan?= =?UTF-8?q?ges=20made=20to=20the=20flows=20in=20the=20tabs.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/frontend/src/types/tabs/index.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/frontend/src/types/tabs/index.ts b/src/frontend/src/types/tabs/index.ts index 0f5048b4d..3d48f64ca 100644 --- a/src/frontend/src/types/tabs/index.ts +++ b/src/frontend/src/types/tabs/index.ts @@ -1,6 +1,7 @@ import { FlowType } from "../flow"; export type TabsContextType = { + save: () => void; tabId: string; setTabId: (index: string) => void; flows: Array;