Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
workspaces
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ssa
workspaces
Commits
6f1d8d5e
Commit
6f1d8d5e
authored
1 year ago
by
Daniel Nemergut
Browse files
Options
Downloads
Patches
Plain Diff
Removed superfluous fields from the UI (about to be replaced with wrester args)
parent
5ce75752
No related branches found
Branches containing commit
No related tags found
Tags containing commit
2 merge requests
!1605
Merge 2.8.2.3 work to main
,
!1493
WS-1893 curator workflow
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
apps/web/src/app/workspaces/ws-home/ws-home.component.html
+0
-21
0 additions, 21 deletions
apps/web/src/app/workspaces/ws-home/ws-home.component.html
apps/web/src/app/workspaces/ws-home/ws-home.component.ts
+0
-33
0 additions, 33 deletions
apps/web/src/app/workspaces/ws-home/ws-home.component.ts
with
0 additions
and
54 deletions
apps/web/src/app/workspaces/ws-home/ws-home.component.html
+
0
−
21
View file @
6f1d8d5e
...
@@ -160,27 +160,6 @@
...
@@ -160,27 +160,6 @@
(change)=
"setDataLocation($event.target.value)"
/>
(change)=
"setDataLocation($event.target.value)"
/>
</div>
</div>
</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=
"col-3"
>
<div
class=
"md-form"
>
<div
class=
"md-form"
>
<label
for=
"curTargetInput"
class=
""
>
Target List (Optional)
</label>
<label
for=
"curTargetInput"
class=
""
>
Target List (Optional)
</label>
...
...
This diff is collapsed.
Click to expand it.
apps/web/src/app/workspaces/ws-home/ws-home.component.ts
+
0
−
33
View file @
6f1d8d5e
...
@@ -35,9 +35,6 @@ export class WsHomeComponent implements OnInit {
...
@@ -35,9 +35,6 @@ export class WsHomeComponent implements OnInit {
public
cmsPath
:
string
;
public
cmsPath
:
string
;
public
sdmId
:
string
;
public
sdmId
:
string
;
public
dataLocation
:
string
;
public
dataLocation
:
string
;
public
productType
:
string
;
public
telescope
:
string
;
public
projectCode
:
string
;
public
targetList
:
string
;
public
targetList
:
string
;
constructor
(
constructor
(
...
@@ -127,10 +124,7 @@ export class WsHomeComponent implements OnInit {
...
@@ -127,10 +124,7 @@ export class WsHomeComponent implements OnInit {
* - Curator type (full or partial)
* - Curator type (full or partial)
* - EB Product Locator
* - EB Product Locator
* - Data location path
* - Data location path
* - Product type
* - Target list
* - Target list
* - Telescope
* - Project code
* - User email
* - User email
*/
*/
LaunchCuratorCapabilityOnClick
(
curatorType
:
string
):
void
{
LaunchCuratorCapabilityOnClick
(
curatorType
:
string
):
void
{
...
@@ -138,10 +132,7 @@ export class WsHomeComponent implements OnInit {
...
@@ -138,10 +132,7 @@ export class WsHomeComponent implements OnInit {
curator_type
:
curatorType
,
curator_type
:
curatorType
,
product_locator
:
this
.
productLocator
,
product_locator
:
this
.
productLocator
,
data_location
:
this
.
dataLocation
,
data_location
:
this
.
dataLocation
,
product_type
:
this
.
productType
,
target_list
:
this
.
targetList
,
target_list
:
this
.
targetList
,
telescope
:
this
.
telescope
,
project_code
:
this
.
projectCode
,
user_email
:
this
.
userEmail
,
user_email
:
this
.
userEmail
,
});
});
}
}
...
@@ -202,30 +193,6 @@ export class WsHomeComponent implements OnInit {
...
@@ -202,30 +193,6 @@ export class WsHomeComponent implements OnInit {
this
.
dataLocation
=
path
;
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
* Sets the target list for curator
* @param targetList Target list for curator
* @param targetList Target list for curator
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment