threshold
This commit is contained in:
parent
a01d28bc49
commit
9268f6144a
@ -1144,13 +1144,13 @@ setAdditionalForecastMonths([
|
|||||||
{varianceHighlighting && (
|
{varianceHighlighting && (
|
||||||
<div className="flex flex-wrap items-center gap-2">
|
<div className="flex flex-wrap items-center gap-2">
|
||||||
<div className="flex items-center gap-2">
|
<div className="flex items-center gap-2">
|
||||||
<span className="text-sm text-[#4B5563]">Quantity</span>
|
<span className="text-sm text-[#4B5563]">Threshold</span>
|
||||||
<select
|
<select
|
||||||
value={quantityThreshold}
|
value={quantityThreshold}
|
||||||
onChange={(e) => setQuantityThreshold(e.target.value)}
|
onChange={(e) => setQuantityThreshold(e.target.value)}
|
||||||
className="border border-[#D1D5DB] rounded-md px-3 py-1 text-sm "
|
className="border border-[#D1D5DB] rounded-md px-3 py-1 text-sm "
|
||||||
>
|
>
|
||||||
<option value="">Select</option>
|
<option value="">10% Quantity</option>
|
||||||
<option value="5">5%</option>
|
<option value="5">5%</option>
|
||||||
<option value="10">10%</option>
|
<option value="10">10%</option>
|
||||||
<option value="15">15%</option>
|
<option value="15">15%</option>
|
||||||
@ -1167,13 +1167,12 @@ setAdditionalForecastMonths([
|
|||||||
</select>
|
</select>
|
||||||
</div>
|
</div>
|
||||||
<div className="flex items-center gap-2">
|
<div className="flex items-center gap-2">
|
||||||
<span className="text-sm text-[#4B5563]">Value</span>
|
|
||||||
<select
|
<select
|
||||||
value={valueThreshold}
|
value={valueThreshold}
|
||||||
onChange={(e) => setValueThreshold(e.target.value)}
|
onChange={(e) => setValueThreshold(e.target.value)}
|
||||||
className="border border-[#D1D5DB] rounded-md px-3 py-1 text-sm "
|
className="border border-[#D1D5DB] rounded-md px-3 py-1 text-sm "
|
||||||
>
|
>
|
||||||
<option value="">Select</option>
|
<option value="">10% Value</option>
|
||||||
<option value="5">5%</option>
|
<option value="5">5%</option>
|
||||||
<option value="10">10%</option>
|
<option value="10">10%</option>
|
||||||
<option value="15">15%</option>
|
<option value="15">15%</option>
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user