Link up all pages in the app to the help docs

This commit is contained in:
Hillel Coren 2022-01-28 14:29:27 +02:00
parent a5ed623770
commit 000c17d78b
1 changed files with 2 additions and 1 deletions

View File

@ -873,7 +873,8 @@ class SidebarFooter extends StatelessWidget {
url += '/basic-settings/#$subRoute'; url += '/basic-settings/#$subRoute';
} }
} else { } else {
url += '/getting-started'; final route = state.uiState.entityTypeRoute.plural;
url += '/' + toSnakeCase(route).replaceAll('_', '-');
} }
launch(url); launch(url);