This commit is contained in:
Swetha-Josh 2026-06-23 11:45:36 +05:30
parent 3daf9f03d3
commit 01203f955c

View File

@ -237,11 +237,21 @@ const showToast = (message, type = 'success') => {
</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"