Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Guppi.Console/Guppi.Console.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<PackageProjectUrl>https://github.com/rprouse/guppi</PackageProjectUrl>
<RepositoryUrl>https://github.com/rprouse/guppi</RepositoryUrl>
<PackageId>dotnet-guppi</PackageId>
<Version>6.2.0</Version>
<Version>6.2.1</Version>
<PackAsTool>true</PackAsTool>
<ToolCommandName>guppi</ToolCommandName>
<PackageOutputPath>./nupkg</PackageOutputPath>
Expand Down
7 changes: 4 additions & 3 deletions Guppi.Console/Skills/CalendarSkill.cs
Original file line number Diff line number Diff line change
Expand Up @@ -139,8 +139,9 @@ private async Task Agenda(DateTime now, string title, bool markdown, bool table)

if (table)
{
sb.AppendLine("| Time | Meeting | Participants | Objective |");
sb.AppendLine("| ---- | ------- | ------------ | --------- |");
sb.AppendLine("| Time | Meeting |");
sb.AppendLine("| ---- | ------- |");
AnsiConsole.Write(sb.ToString());
}

try
Expand Down Expand Up @@ -194,7 +195,7 @@ private static bool DisplayEvent(Core.Entities.Calendar.Event eventItem, bool ma

if (table)
{
var line = $"| {eventItem.Start.GetEmoji()} **{start}{end}** | {TableLinkedSummary(eventItem)} | | |";
var line = $"| {eventItem.Start.GetEmoji()} **{start}{end}** | {TableLinkedSummary(eventItem)} |";
markdownBuffer.AppendLine(line);
AnsiConsole.WriteLine(line);
}
Expand Down