diff --git a/apps/web/src/app/workspaces/ws-home/ws-home.component.html b/apps/web/src/app/workspaces/ws-home/ws-home.component.html index e89939075e1d69de2727d5c65fb263bbc7bc732e..5b2e845e8afac3784cbe04355d9249bae708d2a9 100644 --- a/apps/web/src/app/workspaces/ws-home/ws-home.component.html +++ b/apps/web/src/app/workspaces/ws-home/ws-home.component.html @@ -160,27 +160,6 @@ (change)="setDataLocation($event.target.value)"/> </div> </div> - <div class="col-2"> - <div class="md-form"> - <label for="curTypeInput" class="">Product Type</label> - <input type="text" id="curTypeInput" class="form-control" - (change)="setProductType($event.target.value)"/> - </div> - </div> - <div class="col-2"> - <div class="md-form"> - <label for="curTelescopeInput" class="">Telescope</label> - <input type="text" id="curTelescopeInput" class="form-control" - (change)="setTelescope($event.target.value)"/> - </div> - </div> - <div class="col-2"> - <div class="md-form"> - <label for="curProjectInput" class="">Project Code</label> - <input type="text" id="curProjectInput" class="form-control" - (change)="setProjectCode($event.target.value)"/> - </div> - </div> <div class="col-3"> <div class="md-form"> <label for="curTargetInput" class="">Target List (Optional)</label> diff --git a/apps/web/src/app/workspaces/ws-home/ws-home.component.ts b/apps/web/src/app/workspaces/ws-home/ws-home.component.ts index 4f69d3c6f81a1d1d2fdea31086af17852384f008..e12f7d0ab6bd911fe37d1ad3b0bc474779b95c40 100644 --- a/apps/web/src/app/workspaces/ws-home/ws-home.component.ts +++ b/apps/web/src/app/workspaces/ws-home/ws-home.component.ts @@ -35,9 +35,6 @@ export class WsHomeComponent implements OnInit { public cmsPath: string; public sdmId: string; public dataLocation: string; - public productType: string; - public telescope: string; - public projectCode: string; public targetList: string; constructor( @@ -127,10 +124,7 @@ export class WsHomeComponent implements OnInit { * - Curator type (full or partial) * - EB Product Locator * - Data location path - * - Product type * - Target list - * - Telescope - * - Project code * - User email */ LaunchCuratorCapabilityOnClick(curatorType: string): void { @@ -138,10 +132,7 @@ export class WsHomeComponent implements OnInit { curator_type: curatorType, product_locator: this.productLocator, data_location: this.dataLocation, - product_type: this.productType, target_list: this.targetList, - telescope: this.telescope, - project_code: this.projectCode, user_email: this.userEmail, }); } @@ -202,30 +193,6 @@ export class WsHomeComponent implements OnInit { this.dataLocation = path; } - /** - * Sets the product type for curator - * @param type Product type for curator - */ - setProductType(type: string): void { - this.productType = type; - } - - /** - * Sets the telescope for curator - * @param telescope Telescope for curator - */ - setTelescope(telescope: string): void { - this.telescope = telescope; - } - - /** - * Sets the project code for curator - * @param projectCode Project code for curator - */ - setProjectCode(projectCode: string): void { - this.projectCode = projectCode; - } - /** * Sets the target list for curator * @param targetList Target list for curator