Skip to content

Commit

Permalink
start of UI
Browse files Browse the repository at this point in the history
  • Loading branch information
JFriel committed Oct 10, 2023
1 parent d05fccb commit 30ac201
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 985 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -847,7 +847,7 @@ public override CohortCreationRequest GetCohortHoldoutCreationRequest(ExternalCo
return _mainDockPanel.Invoke(() =>
GetCohortHoldoutCreationRequest(externalCohortTable, project, cohortInitialDescription));

var ui = new CohortCreationRequestUI(this, externalCohortTable, project);
var ui = new Rdmp.UI.CohortUI.CohortHoldout.CohortHoldoutCreationRequestUI(this, externalCohortTable, project);

Check failure on line 850 in Application/ResearchDataManagementPlatform/WindowManagement/ActivateItems.cs

View workflow job for this annotation

GitHub Actions / Build, test, package and sign release

The type or namespace name 'CohortHoldout' does not exist in the namespace 'Rdmp.UI.CohortUI' (are you missing an assembly reference?)

Check failure on line 850 in Application/ResearchDataManagementPlatform/WindowManagement/ActivateItems.cs

View workflow job for this annotation

GitHub Actions / Build, test, package and sign release

The type or namespace name 'CohortHoldout' does not exist in the namespace 'Rdmp.UI.CohortUI' (are you missing an assembly reference?)

if (!string.IsNullOrWhiteSpace(cohortInitialDescription))
ui.CohortDescription = $"{cohortInitialDescription} ({Environment.UserName} - {DateTime.Now})";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -86,8 +86,8 @@ protected ICohortCreationRequest GetCohortHoldoutCreationRequest(string auditLog
//and document the request

// if we have everything we need to create the cohort right here
if (!string.IsNullOrWhiteSpace(_explicitCohortName) && Project?.ProjectNumber != null)
return GenerateCohortCreationRequestFromNameAndProject(_explicitCohortName, auditLogDescription, ect);
//if (!string.IsNullOrWhiteSpace(_explicitCohortName) && Project?.ProjectNumber != null)
//return GenerateCohortCreationRequestFromNameAndProject(_explicitCohortName, auditLogDescription, ect);
// otherwise we are going to have to ask the user for it

//Get a new request for the source they are trying to populate
Expand Down
Loading

0 comments on commit 30ac201

Please sign in to comment.