editSharedChoiceWithShared crashes
When selecting an item "editSharedChoiceWithShared" crashes with "Subscript error in !!,index too large". The call to !! is done in iTasks.API.Common.InteractionTasks in the function "findSelection":
findSelection target options idxs = [target (options !! idx) \ idx <- idxs]
The problem occurs, because "options" is empty but "idxs" not. It it not clear to me why options can be empty and idxs not. Adding this case does not only prevent the crash, but also everything seems to work as expected then:
findSelection _ [] _ = []