chore: remove estimate option from my issues (#839)
This commit is contained in:
parent
3e436179fe
commit
ac98381f23
1 changed files with 18 additions and 14 deletions
|
|
@ -72,7 +72,10 @@ const MyIssuesPage: NextPage = () => {
|
|||
<div className="relative flex flex-col gap-1">
|
||||
<h4 className="text-base text-gray-600">Properties</h4>
|
||||
<div className="flex flex-wrap items-center gap-2">
|
||||
{Object.keys(properties).map((key) => (
|
||||
{Object.keys(properties).map((key) => {
|
||||
if (key === "estimate") return null;
|
||||
|
||||
return (
|
||||
<button
|
||||
key={key}
|
||||
type="button"
|
||||
|
|
@ -85,7 +88,8 @@ const MyIssuesPage: NextPage = () => {
|
|||
>
|
||||
{key === "key" ? "ID" : replaceUnderscoreIfSnakeCase(key)}
|
||||
</button>
|
||||
))}
|
||||
);
|
||||
})}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue