From 57c20f1301b81e6d08a052bf254c51cb4ccc2794 Mon Sep 17 00:00:00 2001 From: Denis Arh Date: Mon, 16 Aug 2021 12:52:47 +0200 Subject: [PATCH] Support custom logo for main and header --- system/types/app_settings.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/system/types/app_settings.go b/system/types/app_settings.go index 72aa9559d..97c5277db 100644 --- a/system/types/app_settings.go +++ b/system/types/app_settings.go @@ -154,8 +154,8 @@ type ( // UserInterface settings UI struct { - MainLogo string `kv:"main-logo" json:"mainLogo"` - HeaderLogo string `kv:"header-logo" json:"headerLogo"` + MainLogo string `kv:"main-logo" json:"mainLogo"` + IconLogo string `kv:"icon-logo" json:"iconLogo"` } `kv:"ui" json:"ui"` }