Browse Source

Revert changes to ReportSample

Marcin Ziąbek 1 year ago
parent
commit
b88883461b
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Source/QuestPDF.ReportSample/Layouts/PhotoTemplate.cs

+ 1 - 1
Source/QuestPDF.ReportSample/Layouts/PhotoTemplate.cs

@@ -49,7 +49,7 @@ namespace QuestPDF.ReportSample.Layouts
             {
                 grid.Columns(6);
 
-                grid.Item().LabelCell().Height(5).Text("Date");
+                grid.Item().LabelCell().Text("Date");
                 grid.Item(2).ValueCell().Text(Model.Date?.ToString("g") ?? string.Empty);
                 grid.Item().LabelCell().Text("Location");
                 grid.Item(2).ValueCell().Text(Model.Location.Format());