mirror of
https://github.com/hcengineering/platform.git
synced 2025-06-09 01:10:17 +00:00
UBERF-4309, UBERF-4311: Fix statuses, default issue for project (#4026)
Signed-off-by: Vyacheslav Tumanov <me@slavatumanov.me>
This commit is contained in:
parent
dd67020cc9
commit
bf68a5c00e
@ -369,7 +369,7 @@
|
|||||||
kind={'ghost'}
|
kind={'ghost'}
|
||||||
showTooltip={{ label: tracker.string.AddIssueTooltip, direction: 'left' }}
|
showTooltip={{ label: tracker.string.AddIssueTooltip, direction: 'left' }}
|
||||||
on:click={() => {
|
on:click={() => {
|
||||||
showPopup(CreateIssue, { space: currentSpace, [groupByKey]: state._id }, 'top')
|
showPopup(CreateIssue, { space: currentSpace, [groupByKey]: state }, 'top')
|
||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
@ -117,6 +117,9 @@
|
|||||||
if (projectData.defaultAssignee !== project?.defaultAssignee) {
|
if (projectData.defaultAssignee !== project?.defaultAssignee) {
|
||||||
update.defaultAssignee = projectData.defaultAssignee
|
update.defaultAssignee = projectData.defaultAssignee
|
||||||
}
|
}
|
||||||
|
if (projectData.defaultIssueStatus !== project?.defaultIssueStatus) {
|
||||||
|
update.defaultIssueStatus = projectData.defaultIssueStatus
|
||||||
|
}
|
||||||
if (projectData.icon !== project?.icon) {
|
if (projectData.icon !== project?.icon) {
|
||||||
update.icon = projectData.icon
|
update.icon = projectData.icon
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user