Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
CD-CODE Web
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Terraform modules
Analyze
Contributor analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
CD-CODE team
CD-CODE Web
Commits
ebbb37c3
Commit
ebbb37c3
authored
2 years ago
by
moon
Browse files
Options
Downloads
Patches
Plain Diff
Description field added for NovelCondensates
parent
3d49940a
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
web/src/components/AddNovelCondensate.vue
+30
-0
30 additions, 0 deletions
web/src/components/AddNovelCondensate.vue
web/src/components/NovelCondensateRequests.vue
+2
-2
2 additions, 2 deletions
web/src/components/NovelCondensateRequests.vue
with
32 additions
and
2 deletions
web/src/components/AddNovelCondensate.vue
+
30
−
0
View file @
ebbb37c3
...
...
@@ -605,6 +605,31 @@
</p>
</div>
<label
class=
"text-right"
for=
"condensate_description"
>
Description
</label>
<div
class=
"col-span-2"
>
<input
id=
"condensate_description"
v-model.trim=
"condensate.description"
class=
"
bg-white
w-1/3
py-4
px-4
w-full
rounded-lg
text-gray-700
bg-transparent
border border-gray-500
hover:border-gray-700
"
type=
"text"
placeholder=
"Description"
>
</div>
<label
class=
"text-right"
for=
"condensate_comments"
...
...
@@ -732,6 +757,7 @@ export default {
proteins
:
[],
synonyms
:
''
,
comments
:
''
,
description
:
''
,
errors
:
{
name
:
false
,
species
:
false
,
...
...
@@ -807,6 +833,7 @@ export default {
this
.
condensate
.
proteins
=
[];
this
.
condensate
.
synonyms
=
''
;
this
.
condensate
.
comments
=
''
;
this
.
condensate
.
description
=
''
;
this
.
condensate
.
errorMsg
=
''
;
this
.
$router
.
push
(
'
/
'
);
},
...
...
@@ -973,6 +1000,7 @@ export default {
IsExperimental
:
vm
.
condensate
.
is_experimental
,
Proteins
:
vm
.
proteinList
,
Synonyms
:
vm
.
condensate
.
synonyms
,
Description
:
vm
.
condensate
.
description
,
Status
:
'
accepted
'
,
SubmissionComments
:
'
Maintainer do not need to provide a reason for such change at the moment!
'
,
...
...
@@ -983,6 +1011,7 @@ export default {
IsExperimental
:
vm
.
condensate
.
is_experimental
,
Proteins
:
vm
.
proteinList
,
Synonyms
:
vm
.
condensate
.
synonyms
,
Description
:
vm
.
condensate
.
description
,
Status
:
'
requested
'
,
SubmissionComments
:
vm
.
condensate
.
comments
,
};
...
...
@@ -1006,6 +1035,7 @@ export default {
vm
.
condensate
.
species
=
vm
.
condensate
.
synonyms
=
vm
.
condensate
.
comments
=
vm
.
condensate
.
description
=
''
;
vm
.
$store
.
dispatch
(
'
Param/resetProteins
'
);
vm
.
$emit
(
'
showToaster
'
,
'
Condensate added successfully!
'
);
...
...
This diff is collapsed.
Click to expand it.
web/src/components/NovelCondensateRequests.vue
+
2
−
2
View file @
ebbb37c3
...
...
@@ -72,8 +72,8 @@ export default {
},
},
{
title
:
'
Species Tax ID
'
,
data
:
'
attributes.
SpeciesTaxId
'
,
title
:
'
Description
'
,
data
:
'
attributes.
Description
'
,
},
{
title
:
'
Status
'
,
...
...
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