We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 57da9a9 commit b83b214Copy full SHA for b83b214
src/components/pnp/findStepColumns.ts
@@ -69,7 +69,7 @@ const chooseStep = (
69
): Step | undefined => {
70
const alias = ApprovedAliases.get(label.toLowerCase());
71
if (alias) {
72
- return alias;
+ return available.has(alias) ? alias : undefined;
73
}
74
75
const distances = available.values().map((step) => {
0 commit comments