updates
This commit is contained in:
parent
3daf9f03d3
commit
01203f955c
@ -236,12 +236,22 @@ const showToast = (message, type = 'success') => {
|
|||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
) :
|
) :
|
||||||
<div className="flex items-center gap-4">
|
<div className="flex items-center gap-4">
|
||||||
|
<button
|
||||||
|
onClick={(e) => {
|
||||||
|
e.stopPropagation();
|
||||||
|
setSelectedSubmission(record);
|
||||||
|
}}
|
||||||
|
className="focus:outline-none"
|
||||||
|
>
|
||||||
<img
|
<img
|
||||||
src="/assets/images/Eye.svg"
|
src="/assets/images/Eye.svg"
|
||||||
alt="View"
|
alt="View"
|
||||||
className="w-5 h-5 text-[#A88632] opacity-60 hover:opacity-100 transition-opacity"
|
// className="w-5 h-5 opacity-60 hover:opacity-100 transition-opacity"
|
||||||
|
className="w-5 h-5 text-[#92722A] opacity-60 hover:opacity-100 transition-opacity"
|
||||||
|
style={{ filter: 'invert(36%) sepia(49%) saturate(680%) hue-rotate(1deg) brightness(89%) contrast(91%)' }}
|
||||||
/>
|
/>
|
||||||
|
</button>
|
||||||
{record.status === 'Rejected' && (
|
{record.status === 'Rejected' && (
|
||||||
<HiMiniArrowPathRoundedSquare
|
<HiMiniArrowPathRoundedSquare
|
||||||
className={`w-5 h-5 transition-opacity ${
|
className={`w-5 h-5 transition-opacity ${
|
||||||
@ -507,7 +517,7 @@ const showToast = (message, type = 'success') => {
|
|||||||
</span>
|
</span>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
if (columnIndex === 8) { // Action column
|
if (columnIndex === 7) { // Action column
|
||||||
return (
|
return (
|
||||||
<button
|
<button
|
||||||
className="text-[#92722A] hover:underline text-sm font-medium focus:outline-none"
|
className="text-[#92722A] hover:underline text-sm font-medium focus:outline-none"
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user