From 3be00eb0a5f766ee29569bda16f6535b55395fb2 Mon Sep 17 00:00:00 2001
From: Michele Alberti <michele.alberti@cea.fr>
Date: Thu, 11 Jun 2020 10:49:36 +0200
Subject: [PATCH] [ivette] Do not crush if no theme is selected.

---
 ivette/src/renderer/ASTview.tsx | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/ivette/src/renderer/ASTview.tsx b/ivette/src/renderer/ASTview.tsx
index b383770585a..5feaaabcf14 100644
--- a/ivette/src/renderer/ASTview.tsx
+++ b/ivette/src/renderer/ASTview.tsx
@@ -121,7 +121,7 @@ const ASTview = () => {
   }
 
   // Theme Popup
-  const selectTheme = (id: string) => setTheme(id);
+  const selectTheme = (id?: string) => id && setTheme(id);
   const checkTheme =
     (th: { id: string }) => ({ checked: th.id === theme, ...th });
   const themePopup =
-- 
GitLab