fix: Support routes with desk in it
This commit is contained in:
parent
e331d4db3e
commit
df2d13b296
1 changed files with 4 additions and 0 deletions
|
|
@ -255,6 +255,10 @@ def resolve_path(path):
|
|||
if path.startswith("app"):
|
||||
path = "app"
|
||||
|
||||
# to keep backward compatibility
|
||||
if path.startswith("desk"):
|
||||
path = "app"
|
||||
|
||||
return path
|
||||
|
||||
def resolve_from_map(path):
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue