This commit is contained in:
Ilakkiya Senthilkumar 2024-04-20 14:25:11 -04:00
parent a088dc1656
commit e088027ee0

View File

@ -24,25 +24,25 @@ export const ContainsDropdown = ({
}`} }`}
> >
<div <div
className="cursor-pointer hover:bg-gray-100 p-1 rounded" className="cursor-pointer hover:bg-gray-100 rounded"
onClick={() => handleFilterTypeChange("contains")} onClick={() => handleFilterTypeChange("contains")}
> >
Contains Contains
</div> </div>
<div <div
className="cursor-pointer hover:bg-gray-100 p-1 rounded" className="cursor-pointer hover:bg-gray-100 rounded"
onClick={() => handleFilterTypeChange("does not contain")} onClick={() => handleFilterTypeChange("does not contain")}
> >
Does not contain Does not contain
</div> </div>
<div <div
className="cursor-pointer hover:bg-gray-100 p-1 rounded" className="cursor-pointer hover:bg-gray-100 rounded"
onClick={() => handleFilterTypeChange("is empty")} onClick={() => handleFilterTypeChange("is empty")}
> >
Is empty Is empty
</div> </div>
<div <div
className="cursor-pointer hover:bg-gray-100 p-1 rounded" className="cursor-pointer hover:bg-gray-100 rounded"
onClick={() => handleFilterTypeChange("is not empty")} onClick={() => handleFilterTypeChange("is not empty")}
> >
Is not empty Is not empty