Skip to content
This repository has been archived by the owner on Jan 3, 2023. It is now read-only.

Commit

Permalink
Fix #121 - Fix ADD keywords and slickrun importer
Browse files Browse the repository at this point in the history
  • Loading branch information
jibedoubleve committed Apr 27, 2020
1 parent 94b7f2a commit 38aa982
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/Probel.Lanceur/Actions/ActionContext.cs
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ public ActionContext(
IKeywordLoader keywordLoader,
ISlickRunImporterService slickRunImporterService)
{
SlickRunImporterService = slickRunImporterService;
KeywordLoader = keywordLoader;
SlickRunImporterService = slickRunImporterService;
EventAggregator = eventAggregator;
Container = container;
SettingsService = settingsService;
Expand Down
2 changes: 2 additions & 0 deletions src/Probel.Lanceur/Actions/BaseUiAction.cs
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,8 @@ public IUiAction With(IActionContext c)
WindowManager = c.WindowManager;
SettingsService = c.SettingsService;
EventAggregator = c.EventAggregator;
KeywordLoader = c.KeywordLoader;
SlickRunImporterService = c.SlickRunImporterService;
return this;
}

Expand Down

0 comments on commit 38aa982

Please sign in to comment.