Merge branch 'master' into mononaut/fix-mobile-bottom-nav

This commit is contained in:
wiz
2023-01-27 03:49:07 +09:00
committed by GitHub
92 changed files with 37829 additions and 16586 deletions

View File

@@ -12,7 +12,8 @@ if (browserWindowEnv.BASE_MODULE && (browserWindowEnv.BASE_MODULE === 'bisq' ||
routes = [
{
path: '',
redirectTo: 'api/rest'
redirectTo: 'api/rest',
pathMatch: 'full'
},
{
path: 'api/:type',
@@ -20,11 +21,13 @@ if (browserWindowEnv.BASE_MODULE && (browserWindowEnv.BASE_MODULE === 'bisq' ||
},
{
path: 'api',
redirectTo: 'api/rest'
redirectTo: 'api/rest',
pathMatch: 'full'
},
{
path: '**',
redirectTo: 'api/rest'
redirectTo: 'api/rest',
pathMatch: 'full'
}
];
} else {