I am trying to use the tinder like plug-in. It turns out that when a tinderLike-Pile recieves a set of data that is filtered and sorted, there is a missmach that appears between the picture displayed in the plug-in and the element returned by the element in the method “ThisTinderPile.currentCard”.
This never occurs with the first card, but only after swiping a few card.
That is quite annoying since it means the actiosn carried out by the workflow when a card is swiped, is not taking place on the correct data item.
After the first tinder card swipe, I have a missmatch in what the tinder pile shows and what “thisTinderPile’s CurrentCard” is returning as a result. This is shown here, the textbox on the right is showing the result of “this TinderPile Current Card Description”. It should match with the tinder pile, but it does not.
Give it another whirl. I updated the information with what you already had before. When you encounter bugs like this, try deleting the data, then inserting it again. Bubble gets a little wonky at times but usually fixes itself if your logic is right (which it is).
No, unfortunately the issue persists. As of now it is impossible to use the tinder pile, taking actions on the data whilst having a constraint in the “data search” of the tinderbox.
So if you want to filter only for cards that the user has not seen, whilst ticking which cards the user has swiped to avoid showing them the next he visits the page, it is impossible to implement.
Check if you have two workflows that are running at the same time when doing an action with the tinder current card.
Usually this happens because you have a workflow with actions that activates a button that swipes the card to the right or the left, and then you also have a separate workflow with the same actions when the card is manually swiped.
This causes that the app run the two workflows at the same time, which may cause the mismatch of the card given and the card wanted.
The proper set up should be:
Workflow condition —> when this button is clicked: Action —> Swipe card to the right
Workflow condition —> when card is swipe to the right: Action —> Group of actions you want to activate for the current card.
do not duplicate the actions in the first workflow, you only need them in the second workflow. that way will work when the user clicks the button and when manually swipes the card.