Skip to content

Commit

Permalink
FIX: CreateForeignKey wizard ends with error. (#1648)
Browse files Browse the repository at this point in the history
  • Loading branch information
JiriPrajz committed Jun 15, 2023
1 parent ef051cc commit 427481b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ public override void SetSummaryText(object summary)
richTextBoxSummary.AppendText(keyForm.ForeignKeyName);
richTextBoxSummary.AppendText(Environment.NewLine);
richTextBoxSummary.AppendText("Lookup: \t\t");
richTextBoxSummary.AppendText(keyForm.Lookup.Name);
richTextBoxSummary.AppendText(keyForm.Lookup == null? "": keyForm.Lookup.Name);
richTextBoxSummary.AppendText(Environment.NewLine);
richTextBoxSummary.AppendText("Caption : \t");
richTextBoxSummary.AppendText(keyForm.Caption);
Expand Down

0 comments on commit 427481b

Please sign in to comment.