@if (workspaces()) {
@if (workspaces().length === 0) {
} @else {
{{ 'PAC.Xpert.WelcomeBack' | translate: { Default: 'Welcome Back!' } }}
{{ 'PAC.Xpert.RecentWorkspaces' | translate: { Default: 'Here are your recently accessed workspaces:' } }}
@for (workspace of workspaces(); track workspace.id) {
@if (me().id === workspace.ownerId) {
}
{{ workspace.name }}
}
}
}