-
Notifications
You must be signed in to change notification settings - Fork 44
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update loading screen #2433
Update loading screen #2433
Conversation
Codecov ReportPatch coverage:
Additional details and impacted files@@ Coverage Diff @@
## master #2433 +/- ##
=======================================
Coverage 73.55% 73.56%
=======================================
Files 236 237 +1
Lines 8245 8249 +4
Branches 1753 1755 +2
=======================================
+ Hits 6065 6068 +3
Misses 1594 1594
- Partials 586 587 +1
☔ View full report in Codecov by Sentry. |
@@ -448,7 +448,7 @@ export const FlowEditor = () => { | |||
<ResetFlowIcon /> Reset flow counts | |||
</Button> | |||
<div id="flow" /> | |||
{loading && <Loading />} | |||
{loading && <Loading showTip={true}/>} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
{loading && <Loading showTip={true}/>} | |
{loading && <Loading showTip />} |
productTips.ts
Outdated
const productTips: FlowTip[] = [ | ||
'Always ensure you have "Published" the flow before testing it.', | ||
'Do not forget to add labels in the flow wherever you want the data to get captured.', | ||
'Wherever you want the data to get captured.', |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'Wherever you want the data to get captured.', | |
'Wherever you want the data to get captured.', |
Remove this
productTips.ts
Outdated
'Flows can become harder to maintain (modify)', | ||
'Debug when they become very large.', |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'Flows can become harder to maintain (modify)', | |
'Debug when they become very large.', | |
'Flows can become harder to maintain (modify), debug when they become very large.', |
productTips.ts
Outdated
'When getting user response from buttons and lists', | ||
'Prepare for additional cases', |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'When getting user response from buttons and lists', | |
'Prepare for additional cases', | |
'When getting user response from buttons and lists, prepare for additional cases', |
productTips.ts
Outdated
"Make use of flows like 'Enter another flow' to keep the flows shorter for bringing in modularity", | ||
'Easier maintenance, readability & troubleshooting, reusability, and better performance', | ||
'While naming the variables, make sure that the name is related to the value it is going to hold.', | ||
"Also, don't use personal names, generic names like test while naming variables.", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"Also, don't use personal names, generic names like test while naming variables.", | |
"Don't use personal names, generic names like test while naming variables.", |
productTips.ts
Outdated
'If applying for an image template, make sure the attached media file has a message in the same language.', | ||
'When using button template always avoid flow keywords as buttons', | ||
"Make use of flows like 'Enter another flow' to keep the flows shorter for bringing in modularity", | ||
'Easier maintenance, readability & troubleshooting, reusability, and better performance', |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'Easier maintenance, readability & troubleshooting, reusability, and better performance', | |
'Easier maintenance, readability & troubleshooting, reusability, and better performance', |
Remove this
I have updated the loading screen and added a tip to the loading screen.