We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
I needed to sort a list by string ex: all items with the property "source"
if it equals to "Unlinked" it should drop to the end of the list
if it doesn't equals to "Unlinked" it should be shifted to start of the array
I managed to do this like this:
sortArray(list, { by: "source", computed: { total: source => (source === "Unlinked" ? 1 : 0), }, });