From ab4c4c7d070b1fc9b2f99d5877c94b6882ff0190 Mon Sep 17 00:00:00 2001 From: mdshamoon Date: Tue, 23 May 2023 00:07:21 +0530 Subject: [PATCH] updated package --- CHANGELOG.md | 10 ++++++++++ package.json | 2 +- src/components/floweditor/FlowEditor.tsx | 3 +++ 3 files changed, 14 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 40d2d0fd7..c919e9768 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,8 +4,18 @@ All notable changes to this project will be documented in this file. Dates are d Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). +#### [v4.7.1](https://github.com/glific/glific-frontend/compare/v4.7.0...v4.7.1) + +> 23 May 2023 + +- Added trackers [`#2393`](https://github.com/glific/glific-frontend/pull/2393) +- Add sheet type filter in link sheet node [`#2389`](https://github.com/glific/glific-frontend/pull/2389) +- Package upgrades [`#2368`](https://github.com/glific/glific-frontend/pull/2368) + #### [v4.7.0](https://github.com/glific/glific-frontend/compare/v4.6.0...v4.7.0) +> 4 May 2023 + - UI enhancements [`#2387`](https://github.com/glific/glific-frontend/pull/2387) - Updated link google sheets node to support writing to google sheets [`#2383`](https://github.com/glific/glific-frontend/pull/2383) diff --git a/package.json b/package.json index c2e0781ac..99f8eb954 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "glific-frontend", - "version": "4.7.0", + "version": "4.7.1", "private": true, "dependencies": { "@apollo/client": "^3.7.13", diff --git a/src/components/floweditor/FlowEditor.tsx b/src/components/floweditor/FlowEditor.tsx index 04a071bb2..9fd114a4e 100644 --- a/src/components/floweditor/FlowEditor.tsx +++ b/src/components/floweditor/FlowEditor.tsx @@ -18,6 +18,7 @@ import { EXPORT_FLOW, GET_FLOW_DETAILS, GET_FREE_FLOW } from 'graphql/queries/Fl import { setAuthHeaders } from 'services/AuthService'; import { SideDrawerContext } from 'context/session'; import { Loading } from 'components/UI/Layout/Loading/Loading'; +import Track from 'services/TrackService'; import { exportFlowMethod } from 'common/utils'; import styles from './FlowEditor.module.css'; import { checkElementInRegistry, loadfiles, setConfig } from './FlowEditor.helper'; @@ -205,6 +206,8 @@ export const FlowEditor = () => { getFreeFlow({ variables: { id: flowId } }); }; + Track('Flow opened'); + return () => { Object.keys(files).forEach((node: any) => { if (files[node]) {