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
Storing a position field for price alerts, which could be NULL, we should support sorting price alerts by position. NULL values should be sorted to the button, and the alerts should otherwise appear in the insertion order they appear in currently. (Order by position, nulls last, then order by id.)
Implementation detail: Updating the position of elements will require updating all other alerts for a user to shift the values and database transactions.
The text was updated successfully, but these errors were encountered:
Storing a
position
field for price alerts, which could beNULL
, we should support sorting price alerts byposition
.NULL
values should be sorted to the button, and the alerts should otherwise appear in the insertion order they appear in currently. (Order by position, nulls last, then order byid
.)Implementation detail: Updating the position of elements will require updating all other alerts for a user to shift the values and database transactions.
The text was updated successfully, but these errors were encountered: