Open ywllowsensor opened 1 week ago
No details provided by team.
[The team marked this bug as a duplicate of the following bug]
Various unusable commands in suggested commands
- Just press tab in the command box, there will be suggestions like
edit
anddelete
- Was going to put it
Low
but there were multiple unusable commands- It was especially confusing for
delete
as there isdelete_product
anddelete_supplier
which works
[original: nus-cs2103-AY2425S1/pe-interim#3261] [original labels: severity.Medium type.FunctionalityBug]
[This is the team's response to the above 'original' bug]
Reason for severity level to low: Even if the user puts the commands suggested by the autocomplete, it won't be executed and the error gracefully specifies unknown command.
The primary place to look for the list of all commands is the User Guide, and Autocomplete is to be used mainly to perform completions to speed up typing, not list out all the commands.
Items for the Tester to Verify
:question: Issue duplicate status
Team chose to mark this issue as a duplicate of another issue (as explained in the Team's response above)
Reason for disagreement: [replace this with your explanation]
Steps to reproduce: 1) Type
del
2) HitTAB
Expected output:
delete_product
anddelete_supplier
should displayActual output:
delete
is displayed alongside the 2 command words mentioned previously.Following this workflow, users may then try to delete something using the invalid
delete
command which will result in a generic error message being shown.In contrast, if the user were to type in
vie
and then hitTAB
, they are shown the following valid commands.Thus, I have tagged this as medium as the behaviour of the autocomplete is not consistent across different commands which can confuse the user, and it is also not elaborated on in the user guide.