Skip to content

Commit

Permalink
updated package
Browse files Browse the repository at this point in the history
  • Loading branch information
mdshamoon committed May 22, 2023
1 parent 3fc9802 commit ab4c4c7
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 1 deletion.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "glific-frontend",
"version": "4.7.0",
"version": "4.7.1",
"private": true,
"dependencies": {
"@apollo/client": "^3.7.13",
Expand Down
3 changes: 3 additions & 0 deletions src/components/floweditor/FlowEditor.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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';
Expand Down Expand Up @@ -205,6 +206,8 @@ export const FlowEditor = () => {
getFreeFlow({ variables: { id: flowId } });
};

Track('Flow opened');

return () => {
Object.keys(files).forEach((node: any) => {
if (files[node]) {
Expand Down

0 comments on commit ab4c4c7

Please sign in to comment.