diff --git a/CHANGELOG.md b/CHANGELOG.md index 5a8b93bba..e20bc0749 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [6.13.0] - 200-08-02 + +### Fkxed + +* **UI**: Fixes the rendering of reference lists. + ## [6.12.0] - 200-08-01 ### Changed diff --git a/frontend/src/app/framework/angular/stateful.component.ts b/frontend/src/app/framework/angular/stateful.component.ts index e8bff4405..1b845c095 100644 --- a/frontend/src/app/framework/angular/stateful.component.ts +++ b/frontend/src/app/framework/angular/stateful.component.ts @@ -83,7 +83,7 @@ export abstract class StatefulComponent extends State implements OnD this.changeDetector.detectChanges(); } - public own(subscription: Subscription | UnsubscribeFunction | Observable) { + public own(subscription: Subscription | UnsubscribeFunction | Observable | null | undefined) { this.subscriptions.own(subscription); } } diff --git a/frontend/src/app/shared/components/contents/content-value.component.html b/frontend/src/app/shared/components/contents/content-value.component.html index 00a0619c0..0420e57a7 100644 --- a/frontend/src/app/shared/components/contents/content-value.component.html +++ b/frontend/src/app/shared/components/contents/content-value.component.html @@ -1,6 +1,6 @@
-
{{value}}
+
{{value}}