From 4f0d200e4e6ed3523cfa023afd219069815465fa Mon Sep 17 00:00:00 2001 From: David Cheung Date: Mon, 8 Jun 2020 13:37:52 -0400 Subject: [PATCH] typo: fix parameter label annotation --- internal/config/moduleconfig/module_config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/config/moduleconfig/module_config.go b/internal/config/moduleconfig/module_config.go index 323a669b7..a604464d8 100644 --- a/internal/config/moduleconfig/module_config.go +++ b/internal/config/moduleconfig/module_config.go @@ -18,7 +18,7 @@ type ModuleConfig struct { type Parameter struct { Field string - Label string `yaml:"value,omitempty"` + Label string `yaml:"label,omitempty"` Options []string `yaml:"options,omitempty"` Execute string `yaml:"execute,omitempty"` Value string `yaml:"value,omitempty"`