Skip to content

Commit

Permalink
update checkin
Browse files Browse the repository at this point in the history
  • Loading branch information
cristim67 committed Apr 27, 2024
1 parent b4670d8 commit a51257d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 2 additions & 2 deletions client/src/components/Header.component.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ const headerTextContent: HeaderItems[] = [

export const Header = () => {
const [isScrolling, setIsScrolling] = useState(false);
const [menuBurger, setMenuBurger] = useState(false);
const [menuBurger, setMenuBurger ] = useState(false);
const [isLogin, setIsLogin] = useState(false);

useEffect(() => {
Expand Down Expand Up @@ -103,7 +103,7 @@ export const Header = () => {
</ul>

<img
className="absolute top-1 my-3 right-[50%] cursor-pointer"
className="absolute top-1 my-3 right-[50%] cursor-pointer scale-125"
src={LOGO}
alt="Logo"
onClick={() => (window.location.href = "/")}
Expand Down
4 changes: 4 additions & 0 deletions client/src/views/Checkin.view.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -105,27 +105,31 @@ const Checkin: React.FC = () => {
type="text"
value={formDataList[index]?.marimeTricou || initialFormData.marimeTricou}
onChange={(e) => handleInputChange(e, index, "marimeTricou")}
className="text-center"
/>
</td>
<td className="border border-gray-400 px-4 py-2">
<input
type="text"
value={formDataList[index]?.numarTricou || initialFormData.numarTricou}
onChange={(e) => handleInputChange(e, index, "numarTricou")}
className="text-center"
/>
</td>
<td className="border border-gray-400 px-4 py-2">
<input
type="text"
value={formDataList[index]?.revolute_cash || initialFormData.revolute_cash}
onChange={(e) => handleInputChange(e, index, "revolute_cash")}
className="text-center"
/>
</td>
<td className="border border-gray-400 px-4 py-2">
<input
type="text"
value={formDataList[index]?.phone || initialFormData.phone}
onChange={(e) => handleInputChange(e, index, "phone")}
className="text-center"
/>
</td>
<td className="border border-gray-400 px-4 py-2">
Expand Down

0 comments on commit a51257d

Please sign in to comment.