Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Laura Morel
VizFaDa-app
Commits
b9c96c9b
Commit
b9c96c9b
authored
Sep 25, 2020
by
Laura Morel
Browse files
Merge branch 'master' of forgemia.inra.fr:laura.morel/vizfada-app
parents
1c43729c
29d56a01
Changes
1
Hide whitespace changes
Inline
Side-by-side
Angular/src/app/filter.class.ts
deleted
100644 → 0
View file @
1c43729c
export
class
Filter
{
species
:
string
;
attribute
:
string
;
values
:
string
[];
constructor
(
species
?:
string
,
attribute
?:
string
,
values
?:
string
[]){
this
.
species
=
species
||
''
;
this
.
attribute
=
attribute
||
''
;
this
.
values
=
values
||
[];
}
}
export
class
Highlight
extends
Filter
{
color
:
string
=
'
blue
'
;
}
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment