feat: select blocker, blocking, and parent (#2121)

* feat: update, delete link

refactor: using old fetch-key

* feat: issue activity with ability to view & add comment

feat: click on view more to view more options in the issue detail

* fix: upload image not working on mobile

* feat: select blocker, blocking, and parent

dev: auth layout for web-view, console.log callback for web-view

* style: made design consistant

* fix: displaying page only on web-view

* style: removed overflow hidden
This commit is contained in:
Dakshesh Jain
2023-09-07 18:42:24 +05:30
committed by GitHub
parent 6d52707ff5
commit faa6a2bcbc
18 changed files with 612 additions and 67 deletions

View File

@@ -2,7 +2,7 @@
import React, { useState } from "react";
// icons
import { ChevronDownIcon, PlayIcon } from "lucide-react";
import { ChevronDown, PlayIcon } from "lucide-react";
// hooks
import useEstimateOption from "hooks/use-estimate-option";
@@ -76,7 +76,7 @@ export const EstimateSelect: React.FC<Props> = (props) => {
) : (
"No estimate"
)}
<ChevronDownIcon className="w-5 h-5" />
<ChevronDown className="w-5 h-5" />
</button>
</>
);