diff --git a/plane-src/apps/web/core/components/issues/issue-modal/components/default-properties.tsx b/plane-src/apps/web/core/components/issues/issue-modal/components/default-properties.tsx index dee03b2..f740065 100644 --- a/plane-src/apps/web/core/components/issues/issue-modal/components/default-properties.tsx +++ b/plane-src/apps/web/core/components/issues/issue-modal/components/default-properties.tsx @@ -84,9 +84,10 @@ export const IssueDefaultProperties = observer(function IssueDefaultProperties(p const maxDate = getDate(targetDate); maxDate?.setDate(maxDate.getDate()); + const propertyButtonClassName = "nodedc-work-item-property-button"; return ( -
+
@@ -118,6 +120,7 @@ export const IssueDefaultProperties = observer(function IssueDefaultProperties(p handleFormChange(); }} buttonVariant="border-with-text" + buttonClassName={propertyButtonClassName} tabIndex={getIndex("priority")} />
@@ -136,7 +139,7 @@ export const IssueDefaultProperties = observer(function IssueDefaultProperties(p handleFormChange(); }} buttonVariant={value?.length > 0 ? "transparent-without-text" : "border-with-text"} - buttonClassName={value?.length > 0 ? "hover:bg-transparent" : ""} + buttonClassName={propertyButtonClassName} placeholder={t("assignees")} multiple tabIndex={getIndex("assignee_ids")} @@ -156,6 +159,7 @@ export const IssueDefaultProperties = observer(function IssueDefaultProperties(p handleFormChange(); }} projectId={projectId ?? undefined} + buttonClassName={propertyButtonClassName} tabIndex={getIndex("label_ids")} createLabelEnabled={!!canCreateLabel} /> @@ -174,6 +178,7 @@ export const IssueDefaultProperties = observer(function IssueDefaultProperties(p handleFormChange(); }} buttonVariant="border-with-text" + buttonClassName={propertyButtonClassName} maxDate={maxDate ?? undefined} placeholder={t("start_date")} tabIndex={getIndex("start_date")} @@ -193,6 +198,7 @@ export const IssueDefaultProperties = observer(function IssueDefaultProperties(p handleFormChange(); }} buttonVariant="border-with-text" + buttonClassName={propertyButtonClassName} minDate={minDate ?? undefined} placeholder={t("due_date")} tabIndex={getIndex("target_date")} @@ -215,6 +221,7 @@ export const IssueDefaultProperties = observer(function IssueDefaultProperties(p placeholder={t("cycle.label", { count: 1 })} value={value} buttonVariant="border-with-text" + buttonClassName={propertyButtonClassName} tabIndex={getIndex("cycle_id")} />
@@ -236,6 +243,7 @@ export const IssueDefaultProperties = observer(function IssueDefaultProperties(p }} placeholder={t("modules")} buttonVariant="border-with-text" + buttonClassName={propertyButtonClassName} tabIndex={getIndex("module_ids")} multiple showCount @@ -258,6 +266,7 @@ export const IssueDefaultProperties = observer(function IssueDefaultProperties(p }} projectId={projectId} buttonVariant="border-with-text" + buttonClassName={propertyButtonClassName} tabIndex={getIndex("estimate_point")} placeholder={t("estimate")} /> @@ -271,7 +280,7 @@ export const IssueDefaultProperties = observer(function IssueDefaultProperties(p customButton={