Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions src/components/ui/NavBarWithSearch/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ type NavBarWithSearchProps = {

export function NavbarSearch({ onNewTask, openedNav, setOpenedNav }: NavBarWithSearchProps) {
const { classes } = useStyles();
const [section, setSection] = useState<"teams" | "projects">("teams");
const [section, setSection] = useState<"teams" | "projects">("projects");
const [newProjectOpened, setNewProjectOpened] = useState(false);
const [newTeamOpened, setNewTeamOpened] = useState(false);

Expand Down Expand Up @@ -182,24 +182,24 @@ export function NavbarSearch({ onNewTask, openedNav, setOpenedNav }: NavBarWithS
{
label: (
<Center>
<TeamIcon />
<ProjectIcon />
<Text ml={6} size={"xs"}>
Teams
Projects
</Text>
</Center>
),
value: "teams",
value: "projects",
},
{
label: (
<Center>
<ProjectIcon />
<TeamIcon />
<Text ml={6} size={"xs"}>
Projects
Teams
</Text>
</Center>
),
value: "projects",
value: "teams",
},
]}
/>
Expand Down
3 changes: 3 additions & 0 deletions src/components/ui/Task/status.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -287,3 +287,6 @@ export const StatusSelectorByTask = ({ task, type, iconVariant }: StatusSelector
</GenericStatusMenu>
);
};



2 changes: 1 addition & 1 deletion src/modules/settings/Members/NewMemberForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ export const NewMemberModal = ({ opened, close }: { opened: boolean; close: () =

return (
<Modal opened={opened} onClose={close} title="Register New Member">
<form onSubmit={form.onSubmit(onCreateMember)}>
<form onSubmit={form.onSubmit(onCreateMember)} autoComplete="off">
<Stack>
<TextInput
label="Name"
Expand Down
Loading