Skip to content

Commit

Permalink
[Rahul] | BAH-4097 | Fix. Slot Time In CareView
Browse files Browse the repository at this point in the history
  • Loading branch information
rahu1ramesh committed Sep 5, 2024
1 parent 2a65761 commit bb1bc3d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -134,8 +134,8 @@ export const SlotDetailsCell = ({
</div>
<span>
{enable24HourTime
? epochTo24HourTimeFormat(slotItem.startTime / 1000)
: epochTo12HourTimeFormat(slotItem.startTime / 1000)}
? epochTo24HourTimeFormat(slotItem.startTime)
: epochTo12HourTimeFormat(slotItem.startTime)}
</span>
<div className="drug-details-wrapper">
<span>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ exports[`SlotDetailsCell should render slotDetailsCell 1`] = `
/>
</div>
<span>
08:36
12:16
</span>
<div
class="drug-details-wrapper"
Expand Down

0 comments on commit bb1bc3d

Please sign in to comment.