I am actually using a custom widget to eliminate duplicates and sort a list.
let processedList;
getValue("Text_List_Input", (internalVariable) => {
processedList = [...new Set(internalVariable)].sort();
setValue("Text_List_Input", processedList);
fireEvent("Text_List_Processed");
});
It will change the input itself immediately
Feel free to only change it to only sort the list.
But keep in Mind: This way of sorting will separate all capital letters… e.g.:
- Apple
- Bus
- Car
- angle
- busy
and not:
- angle
- Apple
- Bus
- busy
- Car
The Event is optional and not relevant for the widget to work.