Skip to content

Commit

Permalink
add missing import to UserManagementDetailComponent
Browse files Browse the repository at this point in the history
so that back link works

Fix jhipster#24641
  • Loading branch information
OmarHawk committed Dec 21, 2023
1 parent 69d074e commit 7941482
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ import { User } from '../user-management.model';
standalone: true,
selector: '<%= jhiPrefixDashed %>-user-mgmt-detail',
templateUrl: './user-management-detail.component.html',
imports: [SharedModule],
imports: [RouterModule, SharedModule],
})
export default class UserManagementDetailComponent implements OnInit {
user: User | null = null;
Expand Down

0 comments on commit 7941482

Please sign in to comment.