web: fix admin url for Prompt

This commit is contained in:
Jens Langhammer 2021-02-27 21:00:33 +01:00
parent c08d9762d9
commit a33c7d7786
1 changed files with 1 additions and 1 deletions

View File

@ -25,6 +25,6 @@ export class Prompt {
} }
static adminUrl(rest: string): string { static adminUrl(rest: string): string {
return `/administration/stages/prompts/${rest}`; return `/administration/stages_prompts/${rest}`;
} }
} }