From 881e16895eee5c8f288788de6f41f61916871354 Mon Sep 17 00:00:00 2001 From: Alice Gaudon Date: Tue, 14 Jul 2020 11:08:24 +0200 Subject: [PATCH] Add default service icon pending favicon --- frontend/ts/index.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/frontend/ts/index.ts b/frontend/ts/index.ts index e8cf232..28e51ee 100644 --- a/frontend/ts/index.ts +++ b/frontend/ts/index.ts @@ -329,6 +329,8 @@ function createService(index: number, nextNavButton?: Element | null) { iconProperties.faIcon.split(' ').forEach((cl: string) => { icon.classList.add(cl); }); + } else { + icon.classList.add('fas', 'fa-circle'); } }