Skip to content

Commit

Permalink
Admin UI: URL Not Updating When Navigating from Client/Tier to Identi…
Browse files Browse the repository at this point in the history
…ty (#819)

* fix: add statement to check on which environment is it running

* fix: revert unnecessary changes

* fix: add url reflects imperative apis

* fix: add const keyword

* fix: formatting

---------

Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
  • Loading branch information
stamenione and mergify[bot] authored Aug 30, 2024
1 parent 01a2944 commit 8498a97
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ class _DeletionProcessAuditLogDetailsState extends State<DeletionProcessAuditLog
if (kIsDesktop)
Row(
children: [
BackButton(),
const BackButton(),
IconButton(
icon: const Icon(Icons.refresh),
onPressed: _reloadIdentityDeletionProcessAuditLogs,
Expand Down
2 changes: 2 additions & 0 deletions Applications/AdminUi/apps/admin_ui/lib/main.dart
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ void main() async {

await setup();

GoRouter.optionURLReflectsImperativeAPIs = true;

dataTableShowLogs = false;

runApp(const AdminUiApp());
Expand Down

0 comments on commit 8498a97

Please sign in to comment.