From 176f5c5ecc29d2cd9ed6aa39a85a524b8b4bb92a Mon Sep 17 00:00:00 2001 From: mikeTWC1984 Date: Tue, 2 Apr 2024 20:58:05 -0400 Subject: [PATCH] plugin import - allow empty param title --- htdocs/js/pages/admin/Plugins.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/htdocs/js/pages/admin/Plugins.js b/htdocs/js/pages/admin/Plugins.js index 22e9589..aedb284 100644 --- a/htdocs/js/pages/admin/Plugins.js +++ b/htdocs/js/pages/admin/Plugins.js @@ -177,7 +177,7 @@ Class.add( Page.Admin, { let e = plugin.params[i] if(!e.id) return app.doError("One of the plugin parameters is missing [id] property") if(!e.type) return app.doError("One of the plugin parameters is missing [type] property") - if(!e.title) return app.doError("One of the plugin parameters is missing [title] property") + // if(!e.title) return app.doError("One of the plugin parameters is missing [title] property") } }