Skip to content

Commit

Permalink
[#259] Remove range from FE table expand
Browse files Browse the repository at this point in the history
  • Loading branch information
wayangalihpratama committed Jan 24, 2024
1 parent 1ea32be commit c2df1c6
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 6 deletions.
1 change: 0 additions & 1 deletion backend/models/reference_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,6 @@ class ReferenceValueList(TypedDict):
region: str
year: int
confidence_level: Optional[str]
range: Optional[str]
type: Optional[str]


Expand Down
1 change: 0 additions & 1 deletion backend/tests/test_090_reference_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -307,7 +307,6 @@ async def test_get_reference_value(
"region": "Sample Region",
"year": 2023,
"confidence_level": "High",
"range": "Sample Range",
"type": "Sample Type Area",
}
]
Expand Down
8 changes: 4 additions & 4 deletions frontend/src/pages/explore-studies/ExploreStudiesPage.js
Original file line number Diff line number Diff line change
Expand Up @@ -105,10 +105,10 @@ const referenceDataExpand = [
key: "confidence_level",
label: "Confidence Level",
},
{
key: "range",
label: "Range",
},
// {
// key: "range",
// label: "Range",
// },
];

const perPage = 10;
Expand Down

0 comments on commit c2df1c6

Please # to comment.