You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This could be a configuration on the step-manager. Another option would be to prefix the numbers by a magic string. Or a currentId could be provided, that is either a number or a name with a prefix so it can be distinguished. For example all names could be prefixed by a - for the currentId.
{{#step-manager currentId=step as |w|}}
{{#w.step name='a'}}{{/w.step}}
{{#w.step}}{{/w.step}}
{{#w.step name='1'}}{{/w.step}}
{{/step-manager}}
this will result in currentId being either -a, 1 or -1. Other signs then - could be ., _ or ~. However I think it should be nothing that needs percent encoding in the URL.
Also currentId should always be set, even if its not provided initially.
this would be especially useful for debugging, when no step names are defined, but its undesired that a page refresh brings me back to the first page.
The text was updated successfully, but these errors were encountered: