Help

The Community will be temporarily unavailable starting on Friday February 28. We’ll be back as soon as we can! To learn more, check out our Announcements blog post.

Like Button w/ Slow Value Refresh on Interface

Topic Labels: Automations Formulas
769 1
cancel
Showing results for 
Search instead for 
Did you mean: 
RaeRae
4 - Data Explorer
4 - Data Explorer

Hi there,

I was able to successful write and run a script for a basic "like" button on a table where team members can sort of upvote a table item. The problem is it does not refresh on the interface for a long time and does not give any haptic feedback to the user - not a good experience at all and very easy to find yourself hitting the button multiple times.

Is there a way to get the value to load more quickly on the page? Like a field refresh trigger or interface refresh action?

 

 

//Read
var record = input.config().getLikes;
//console.log(record);

//math
var newLikes = Number(1 + record);
//console.log(newLikes);

//update
output.set('likes', newLikes);

 

 

 

 

 

 

1 Reply 1
oscarjames24
4 - Data Explorer
4 - Data Explorer

Having the same issue with users hitting hte button multiple times and firing off several versions of the same automation.

Did you find a suitable workaround? @RaeRae