pramod_Task#207 Assign button hide and completedWork not editable if , > 0 #92

Merged
vikas.nale merged 8 commits from pramod_Task#207 into Issue_May_2W 2025-05-10 10:42:00 +00:00
Showing only changes of commit 18b328743a - Show all commits

View File

@ -41,7 +41,7 @@ export const convertShortTime = (dateString) => {
};
export const timeElapsed = (checkInTime, timeElapsedInHours) => {
const checkInDate = new Date(checkInTime);
const checkInDate = new Date( checkInTime.split( "T" )[ 0 ] );
const currentTime = new Date();