mirror of
https://github.com/node-red/node-red.git
synced 2025-03-01 10:36:34 +00:00
editorTheme: allow header logo/title to be a link
This commit is contained in:
@@ -91,6 +91,11 @@ module.exports = {
|
||||
if (theme.header) {
|
||||
|
||||
themeContext.header.title = theme.header.title || themeContext.header.title;
|
||||
|
||||
if (theme.header.hasOwnProperty("url")) {
|
||||
themeContext.header.url = theme.header.url;
|
||||
}
|
||||
|
||||
if (theme.header.hasOwnProperty("image")) {
|
||||
if (theme.header.image) {
|
||||
url = serveFile(themeApp,"/header/",theme.header.image);
|
||||
|
Reference in New Issue
Block a user