You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The "Jump to bottom" button visibility in the chat widget is currently controlled by having an extra empty element in the chat conversation list. When the associated PortalList renders this element it means we are "at the bottom of the list", so the button should be hidden.
In Makepad, a new PortalList::is_at_end() function was recently added. It theory, it should provide the bit of information we need here: if the list is scrolled at the end or not. The task is to replace our previous approach using this cleaner solution.
Note: We need first to bump to the latest Makepad version, which is an ongoing effort now. I will update this issue whenever is ready.
The text was updated successfully, but these errors were encountered:
The "Jump to bottom" button visibility in the chat widget is currently controlled by having an extra empty element in the chat conversation list. When the associated
PortalList
renders this element it means we are "at the bottom of the list", so the button should be hidden.In Makepad, a new
PortalList::is_at_end()
function was recently added. It theory, it should provide the bit of information we need here: if the list is scrolled at the end or not. The task is to replace our previous approach using this cleaner solution.Note: We need first to bump to the latest Makepad version, which is an ongoing effort now. I will update this issue whenever is ready.
The text was updated successfully, but these errors were encountered: