Help

Save the date! Join us on October 16 for our Product Ops launch event. Register here.

Re: Like Button w/ Slow Value Refresh on Interface

60 0
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