Skip to content

Commit

Permalink
Improved Try Kusto For Free
Browse files Browse the repository at this point in the history
  • Loading branch information
yogilad committed Nov 6, 2023
1 parent 4b1eb4e commit ba8d530
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Src/App/Workers/Misc/HelpWorker.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ public class HelpWorker : WorkerBase
{
private const string Help = "Help";
private const string Share = "Share Klipboard";
private const string FreeCluster = "Try Kusto For Free";
private const string FreeKusto = "Try Kusto For Free";
private const string Report = "Report an Issue";
private const string Updates = "Check For Updates";
private const string SignOut = "Sign Out of AAD";
Expand All @@ -17,7 +17,7 @@ public class HelpWorker : WorkerBase


public HelpWorker(ISettings settings, INotificationHelper notificationHelper)
: base(ClipboardContent.None, settings, notificationHelper, new List<string> { Help, About, WhatsNew, Share, Report, Updates, SignOut, FreeCluster })
: base(ClipboardContent.None, settings, notificationHelper, new List<string> { Help, About, WhatsNew, Share, Report, Updates, SignOut, FreeKusto })
{
}

Expand Down Expand Up @@ -62,8 +62,8 @@ public override async Task HandleAsync(string? chosenOption)
ShareViaEmail();
break;

case FreeCluster:
OpSysHelper.InvokeLink("https://dataexplorer.azure.com/freecluster");
case FreeKusto:
OpSysHelper.InvokeLink("https://github.com/yogilad/Klipboard/wiki/Quick-Start-Guide#get-kusto");
break;

case WhatsNew:
Expand Down

0 comments on commit ba8d530

Please sign in to comment.