Skip to content

Commit

Permalink
fix(ui): use absolute URL to redirect from autocomplete list. Closes #…
Browse files Browse the repository at this point in the history
  • Loading branch information
nirav24 authored Aug 31, 2020
1 parent 712c77f commit b681c11
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -414,7 +414,7 @@ export class WorkflowsList extends BasePage<RouteComponentProps<any>, State> {
</React.Fragment>
)}
onSelect={val => {
ctx.navigation.goto(`./${val}`);
ctx.navigation.goto(uiUrl(`workflows/${val}`));
}}
onChange={e => {
ctx.navigation.goto('.', {search: e.target.value}, {replace: true});
Expand Down

0 comments on commit b681c11

Please sign in to comment.