From d69bde132750d56a166e8b48b604b42afffb9839 Mon Sep 17 00:00:00 2001 From: Kristof De Langhe Date: Wed, 27 Jan 2021 11:24:40 +0100 Subject: [PATCH] 75316: TSlint error fix --- src/app/core/data/relationship-type.service.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/core/data/relationship-type.service.ts b/src/app/core/data/relationship-type.service.ts index b55a0ade8a..4dac044090 100644 --- a/src/app/core/data/relationship-type.service.ts +++ b/src/app/core/data/relationship-type.service.ts @@ -88,7 +88,7 @@ export class RelationshipTypeService extends DataService { map((types: RelationshipType[]) => { const match = types.find((type: RelationshipType) => hasValue(type)); if (hasValue(match)) { - return match + return match; } else { return null; }