chore: hide issue properties if there are none (#1554)
This commit is contained in:
parent
9ba8f5c21f
commit
fc92d7d1a0
5 changed files with 25 additions and 26 deletions
|
|
@ -72,7 +72,8 @@ const MyIssuesPage: NextPage = () => {
|
|||
<h4 className="text-sm text-custom-text-200">Properties</h4>
|
||||
<div className="flex flex-wrap items-center gap-2">
|
||||
{Object.keys(properties).map((key) => {
|
||||
if (key === "estimate") return null;
|
||||
if (key === "estimate" || key === "created_on" || key === "updated_on")
|
||||
return null;
|
||||
|
||||
return (
|
||||
<button
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue