Skip to content

Commit dff4de4

Browse files
authored
Merge pull request #79 from github/coal-ila-fix-isNew
Fix is isNew
2 parents 9a1851f + 5e00282 commit dff4de4

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

KustoSchemaTools/Changes/ScriptCompareChange.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ public ScriptCompareChange(string entity, IKustoBaseEntity? from, IKustoBaseEnti
2020
private void Init()
2121
{
2222
var from = From?.CreateScripts(Entity, false).ToDictionary(itm => itm.Kind) ?? new Dictionary<string, DatabaseScriptContainer>();
23-
var to = To.CreateScripts(Entity, from != null);
23+
var to = To.CreateScripts(Entity, from == null);
2424
Markdown = string.Empty;
2525

2626
if (to.Any() == false) return;

0 commit comments

Comments
 (0)