Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main' into release/2.10 (#1853)
Browse files Browse the repository at this point in the history
# Conflicts:
#	DesktopUI2/DesktopUI2/ViewModels/StreamViewModel.cs
  • Loading branch information
teocomi authored Nov 14, 2022
1 parent 663142e commit c1a998f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -107,10 +107,6 @@ public void CancelSendOrReceiveCommand()

}

public void CloseNotificationCommand()
{

}

public void OpenReportCommand()
{
Expand Down
7 changes: 7 additions & 0 deletions DesktopUI2/DesktopUI2/ViewModels/StreamViewModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1082,6 +1082,13 @@ public void ClearSearchCommand()
}


public void ShareCommand()
{
MainViewModel.RouterInstance.Navigate.Execute(new CollaboratorsViewModel(HostScreen, this));

Analytics.TrackEvent(Analytics.Events.DUIAction, new Dictionary<string, object>() { { "name", "Share Open" } });
}

public void EditSavedStreamCommand()
{
MainViewModel.RouterInstance.Navigate.Execute(this);
Expand Down

0 comments on commit c1a998f

Please sign in to comment.