Update Flow.Launcher.Core/Plugin/JsonRPCPluginSettings.cs

Co-authored-by: Yan Li <Yusyuriv@users.noreply.github.com>
This commit is contained in:
Jack Ye 2025-03-20 17:41:11 +08:00 committed by GitHub
parent 444d29506d
commit f14e79dbc1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -183,8 +183,8 @@ namespace Flow.Launcher.Core.Plugin
StackPanel? panel = null;
FrameworkElement contentControl;
// If the type is textBlock, seperator or check box, we do not need to create a panel
if (type != "textBlock" && type != "seperator" && type != "checkbox")
// If the type is textBlock, separator, or checkbox, we do not need to create a panel
if (type != "textBlock" && type != "separator" && type != "checkbox")
{
// Create a panel to hold the label and description
panel = new StackPanel