Remove tach from aircraft
This commit is contained in:
@@ -50,8 +50,6 @@ export default function FlightForm({
|
||||
|
||||
hobbs_start: null,
|
||||
hobbs_end: null,
|
||||
tach_start: null,
|
||||
tach_end: null,
|
||||
|
||||
time_start: null,
|
||||
time_off: null,
|
||||
@@ -124,10 +122,6 @@ export default function FlightForm({
|
||||
<HourInput form={form} field="hobbs_start" label="Hobbs Start" />
|
||||
<HourInput form={form} field="hobbs_end" label="Hobbs End" />
|
||||
</Group>
|
||||
<Group justify="center" grow mt="md">
|
||||
<HourInput form={form} field="tach_start" label="Tach Start" />
|
||||
<HourInput form={form} field="tach_end" label="Tach End" />
|
||||
</Group>
|
||||
</Fieldset>
|
||||
|
||||
{/* Start/Stop */}
|
||||
|
@@ -3,8 +3,9 @@ import { Stack, NavLink } from "@mantine/core";
|
||||
import { Link, useLocation } from "@remix-run/react";
|
||||
import {
|
||||
IconBook2,
|
||||
IconDashboard,
|
||||
IconLogout,
|
||||
IconPlaneDeparture,
|
||||
IconPlaneTilt,
|
||||
IconUser,
|
||||
} from "@tabler/icons-react";
|
||||
|
||||
@@ -28,7 +29,7 @@ export default function Navbar({
|
||||
component={Link}
|
||||
to="/logbook/dashboard"
|
||||
label="Dashboard"
|
||||
leftSection={<IconPlaneDeparture />}
|
||||
leftSection={<IconDashboard />}
|
||||
active={page == "dashboard"}
|
||||
onClick={() => (opened ? toggle() : null)}
|
||||
/>
|
||||
@@ -41,6 +42,15 @@ export default function Navbar({
|
||||
active={page === "flights"}
|
||||
onClick={() => (opened ? toggle() : null)}
|
||||
/>
|
||||
<NavLink
|
||||
p="md"
|
||||
component={Link}
|
||||
to="/logbook/aircraft"
|
||||
label="Aircraft"
|
||||
leftSection={<IconPlaneTilt />}
|
||||
active={page === "aircraft"}
|
||||
onClick={() => (opened ? toggle() : null)}
|
||||
/>
|
||||
</Stack>
|
||||
<Stack gap="0">
|
||||
<NavLink
|
||||
|
Reference in New Issue
Block a user