Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
CryptoMetrics_L02_GRP15
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
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
L02_GRP15
CryptoMetrics_L02_GRP15
Merge requests
!7
Merge develop to main
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Merge develop to main
develop
into
main
Overview
0
Commits
35
Pipelines
0
Changes
2
Merged
Aggarwal Himanshu
requested to merge
develop
into
main
3 years ago
Overview
0
Commits
35
Pipelines
0
Changes
2
Expand
0
0
Merge request reports
Viewing commit
5e922f34
Prev
Next
Show latest version
2 files
+
37
−
2
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
5e922f34
Fix useFilters hook; Add initial filters
· 5e922f34
Aggarwal Himanshu
authored
3 years ago
src/cryptometrics/constants/constants.js
+
35
−
0
Options
@@ -98,3 +98,38 @@ export const cryptocurrencies = [
name
:
"
Cardano
"
,
},
];
export
const
filterOptions
=
{
price
:
{
id
:
"
price
"
,
name
:
"
Price
"
,
options
:
{
equals
:
{
id
:
"
equals
"
,
name
:
"
is
"
,
},
less_than
:
{
id
:
"
less_than
"
,
name
:
"
is less than
"
,
},
greater_than
:
{
id
:
"
greater_than
"
,
name
:
"
is greater than
"
,
},
},
},
name
:
{
id
:
"
name
"
,
name
:
"
Name
"
,
options
:
{
equals
:
{
id
:
"
equals
"
,
name
:
"
is
"
,
},
less_than
:
{
id
:
"
contains
"
,
name
:
"
contains
"
,
},
},
},
};
Loading