fix: create new issue when grouped by label (#1308)

This commit is contained in:
Aaryan Khandelwal 2023-06-23 11:08:53 +05:30 committed by GitHub
parent e7bb580289
commit f839150741
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 55 additions and 43 deletions

View file

@ -6,6 +6,10 @@ import useSWR from "swr";
// headless ui
import { Combobox, Transition } from "@headlessui/react";
// services
import issuesServices from "services/issues.service";
// ui
import { IssueLabelsList } from "components/ui";
// icons
import {
CheckIcon,
@ -14,13 +18,10 @@ import {
RectangleGroupIcon,
TagIcon,
} from "@heroicons/react/24/outline";
// services
import issuesServices from "services/issues.service";
// types
import type { IIssueLabels } from "types";
// fetch-keys
import { PROJECT_ISSUE_LABELS } from "constants/fetch-keys";
import { IssueLabelsList } from "components/ui";
type Props = {
setIsOpen: React.Dispatch<React.SetStateAction<boolean>>;