Closed JanBliznicenko closed 2 weeks ago
If you fill in any filter, then move items, then the filter text keeps showing, yet the filter is no longer applied.
| targetItemToRemove sourceItemToAdd sourceItems targetItems allItems presenter | targetItemToRemove := 'TargetToRemove'. sourceItemToAdd := 'SourceToAdd'. sourceItems := { 'S1'. 'S2'. sourceItemToAdd }. targetItems := { 'T1'. 'T2'. targetItemToRemove }. allItems := sourceItems , targetItems. presenter := SpChooserPresenter sourceItems: sourceItems copy chosenItems: targetItems copy. presenter open presenter sourceList filterInputPresenter text: 'ToAdd'. presenter targetList filterInputPresenter text: 'ToRemove'. presenter removeAll.
Possible solutions:
Clearing the text might be simpler and user might probably want to rest those filter anyway after a move is done.
Fixed by https://github.com/pharo-spec/Spec/pull/1494
If you fill in any filter, then move items, then the filter text keeps showing, yet the filter is no longer applied.
Possible solutions:
Clearing the text might be simpler and user might probably want to rest those filter anyway after a move is done.