Skip to content

Commit

Permalink
Fix the license model opening (#4050)
Browse files Browse the repository at this point in the history
In hindsight it should have been obvious that this won't work...
  • Loading branch information
danielmarbach committed Mar 28, 2024
1 parent df9a6cf commit d35be00
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ServiceControl.Config/UI/Shell/LicenseStatusManager.cs
Expand Up @@ -4,16 +4,16 @@
using System.Threading;
using System.Threading.Tasks;
using Caliburn.Micro;
using Commands;
using Events;
using Framework.Commands;
using Framework.Rx;
using License;
using ServiceControl.LicenseManagement;
using ICommand = System.Windows.Input.ICommand;

class LicenseStatusManager : RxScreen, IHandle<LicenseUpdated>, IHandle<FocusChanged>
{
public LicenseStatusManager(AwaitableAbstractCommand<object> openLicense)
public LicenseStatusManager(OpenViewModelCommand<LicenseViewModel> openLicense)
{
openLicense.OnCommandExecuting = () => ShowPopup = false;
OpenLicense = openLicense;
Expand Down

0 comments on commit d35be00

Please sign in to comment.