Skip to content

Commit

Permalink
Fix issue with markdown message when using lookup-exists and lookup-m…
Browse files Browse the repository at this point in the history
…atches
  • Loading branch information
Cédric L. Charlier committed Apr 17, 2019
1 parent 6fc9ce6 commit b47fc64
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,11 @@ abstract class LookupViolationMessageMarkdown : LookupViolationMessage<MarkdownC

public LookupViolationMessageMarkdown(IDictionary<string, ISampler<DataRow>> samplers)
: base(samplers)
{ }
{
reference = new MarkdownContainer();
candidate = new MarkdownContainer();
analysis = new MarkdownContainer();
}

protected override void RenderStandardTable(IEnumerable<DataRow> rows, IEnumerable<ColumnMetadata> metadata, ISampler<DataRow> sampler, string title, MarkdownContainer container)
{
Expand Down

0 comments on commit b47fc64

Please sign in to comment.