bug fixed hscodes import
This commit is contained in:
parent
022ca1d207
commit
62880bf4e0
@ -125,6 +125,7 @@ const AdminDashboard = () => {
|
|||||||
onChange={(e) => setSelectedQuarter(e.target.value)}
|
onChange={(e) => setSelectedQuarter(e.target.value)}
|
||||||
className="border border-[#D0D5DD] rounded-md h-8 px-2 text-sm focus:outline-none focus:ring-1 focus:ring-[#92722A]"
|
className="border border-[#D0D5DD] rounded-md h-8 px-2 text-sm focus:outline-none focus:ring-1 focus:ring-[#92722A]"
|
||||||
>
|
>
|
||||||
|
<option value="All">All</option>
|
||||||
<option value="Q1">Q1</option>
|
<option value="Q1">Q1</option>
|
||||||
<option value="Q2">Q2</option>
|
<option value="Q2">Q2</option>
|
||||||
<option value="Q3">Q3</option>
|
<option value="Q3">Q3</option>
|
||||||
@ -136,6 +137,7 @@ const AdminDashboard = () => {
|
|||||||
onChange={(e) => setSelectedYear(e.target.value)}
|
onChange={(e) => setSelectedYear(e.target.value)}
|
||||||
className="border border-[#D0D5DD] rounded-md h-8 px-2 text-sm focus:outline-none focus:ring-1 focus:ring-[#92722A]"
|
className="border border-[#D0D5DD] rounded-md h-8 px-2 text-sm focus:outline-none focus:ring-1 focus:ring-[#92722A]"
|
||||||
>
|
>
|
||||||
|
<option value="All">All</option>
|
||||||
{Array.from(
|
{Array.from(
|
||||||
{ length: new Date().getFullYear() - 2021 },
|
{ length: new Date().getFullYear() - 2021 },
|
||||||
(_, i) => new Date().getFullYear() - i
|
(_, i) => new Date().getFullYear() - i
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user