From 8a44e5dabcc9467757e0fcd78706dd0c5b7919ed Mon Sep 17 00:00:00 2001 From: Siddhanta <66236925+siddhantac@users.noreply.github.com> Date: Sun, 4 Aug 2024 07:49:49 +0800 Subject: [PATCH] fix: incorrect json tag for config.locked --- ui/config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/config.go b/ui/config.go index a909fd1..bb44a81 100644 --- a/ui/config.go +++ b/ui/config.go @@ -12,7 +12,7 @@ import ( type Report struct { Cmd string `json:"cmd"` Name string `json:"name"` - Locked bool `json:"ignoreOptions"` + Locked bool `json:"locked"` } type Config struct {