From cfd28f30e2f55c6d54a994776d7660e05589763a Mon Sep 17 00:00:00 2001 From: Christian Stein Date: Thu, 13 Feb 2020 14:16:42 +0100 Subject: [PATCH] Fixes broken datalist data type configuration on Basket generation Fixes #45 --- lib/core/tools/Get-IcingaCheckCommandConfig.psm1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/core/tools/Get-IcingaCheckCommandConfig.psm1 b/lib/core/tools/Get-IcingaCheckCommandConfig.psm1 index 4f63c2d..8e52e0f 100644 --- a/lib/core/tools/Get-IcingaCheckCommandConfig.psm1 +++ b/lib/core/tools/Get-IcingaCheckCommandConfig.psm1 @@ -250,7 +250,7 @@ function Get-IcingaCheckCommandConfig() $Basket.Datafield[[string]$FieldID].Add( 'settings', @{ 'datalist' = $DataListName; - 'datatype' = 'string'; + 'data_type' = 'string'; 'behavior' = 'strict'; } );