From b157fc0c2bc6e59b6f5f7fca45dabe3fd1f6c878 Mon Sep 17 00:00:00 2001 From: Jonathan Jenne Date: Mon, 1 Nov 2021 10:45:12 +0100 Subject: [PATCH] Trim values from Xml --- MultiTool.Shared/Documents/DocumentLoader.vb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MultiTool.Shared/Documents/DocumentLoader.vb b/MultiTool.Shared/Documents/DocumentLoader.vb index 387df7c..ccc92d2 100644 --- a/MultiTool.Shared/Documents/DocumentLoader.vb +++ b/MultiTool.Shared/Documents/DocumentLoader.vb @@ -129,7 +129,7 @@ Namespace Documents Where(Function(c) c.Name = oSubElement.Name). SingleOrDefault() - Dim oValue = oSubElement.Value + Dim oValue = oSubElement.Value.Trim() ' TODO: Needed when we have time for date times 'If oSchemaField.DataType = Constants.ColumnType.Date Then