Compare commits

...

1 Commits

Author SHA1 Message Date
Prateek Shourya
a9ee78d797 fix: work item creation in intake 2025-02-25 17:42:10 +05:30
2 changed files with 2 additions and 1 deletions

View File

@@ -234,11 +234,11 @@ export const StateDropdown: React.FC<Props> = observer((props) => {
filteredOptions.length > 0 ? (
filteredOptions.map((option) => (
<StateOption
{...props}
key={option.value}
option={option}
selectedValue={value}
className="flex w-full cursor-pointer select-none items-center justify-between gap-2 truncate rounded px-1 py-1.5"
{...props}
/>
))
) : (

View File

@@ -61,6 +61,7 @@ export const InboxIssueProperties: FC<TInboxIssueProperties> = observer((props)
projectId={projectId}
buttonVariant="border-with-text"
tabIndex={getIndex("state_id")}
isForWorkItemCreation={!data?.id}
/>
</div>