Small fixes to link, shows own reviews

This commit is contained in:
Pieter Vander Vennet 2020-12-11 16:29:51 +01:00
parent ef70c17393
commit 0855f46c49
7 changed files with 85 additions and 62 deletions

View file

@ -1,3 +1,5 @@
import {UIEventSource} from "../UIEventSource";
export interface Review {
comment?: string,
author: string,
@ -7,5 +9,5 @@ export interface Review {
/**
* True if the current logged in user is the creator of this comment
*/
made_by_user: boolean
made_by_user: UIEventSource<boolean>
}