...
 
Commits (2)
......@@ -75,7 +75,7 @@ import { AnalyticsModule } from "./modules/analytics/analytics.module";
ReactiveFormsModule,
FormsModule,
HttpClientModule,
RouterModule.forRoot(MindsAppRoutes),
RouterModule.forRoot(MindsAppRoutes, { onSameUrlNavigation: "reload" }),
CaptchaModule,
CommonModule,
AnalyticsModule,
......
......@@ -148,7 +148,7 @@
</div>
<!-- Don't show comments for albums -->
<div class="mdl-grid m-media-content--comments mdl-color--white" *ngIf="canShowComments() && (activityService.allowComment$ | async)">
<div class="mdl-grid m-media-content--comments mdl-color--white" *ngIf="canShowComments() || (activityService.allowComment$ | async)">
<m-comments__tree
[entity]="entity"
>
......