From 3af9a14a0e78be88c5a048b79187c32796c06a7c Mon Sep 17 00:00:00 2001 From: Ven Date: Sun, 30 Oct 2022 02:58:11 +0100 Subject: Patcher: More useful errors with code diffs (#177) * Patcher: More useful errors with code diffs * Nicer log formatting * PluginCards: ellipsises --- src/components/PluginSettings/index.tsx | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) (limited to 'src/components/PluginSettings') diff --git a/src/components/PluginSettings/index.tsx b/src/components/PluginSettings/index.tsx index 6ad9750..1a2e78f 100644 --- a/src/components/PluginSettings/index.tsx +++ b/src/components/PluginSettings/index.tsx @@ -145,7 +145,19 @@ function PluginCard({ plugin, disabled, onRestartNeeded, onMouseEnter, onMouseLe onChange={toggleEnabled} disabled={disabled} value={isEnabled()} - note={{plugin.description}} + note={ + {plugin.description} + } hideBorder={true} > -- cgit