mirror of
https://github.com/hcengineering/platform.git
synced 2026-09-26 11:34:58 +02:00
Rework documents (#2347)
Signed-off-by: Andrey Sobolev <haiodo@gmail.com>
This commit is contained in:
@@ -49,10 +49,10 @@
|
||||
direction: 'top',
|
||||
component: DueDatePopup,
|
||||
props: {
|
||||
formattedDate: formattedDate,
|
||||
daysDifference: daysDifference,
|
||||
isOverdue: isOverdue,
|
||||
iconModifier: iconModifier
|
||||
formattedDate,
|
||||
daysDifference,
|
||||
isOverdue,
|
||||
iconModifier
|
||||
}
|
||||
}}
|
||||
>
|
||||
|
||||
@@ -108,13 +108,13 @@
|
||||
: {
|
||||
title: '',
|
||||
description: '',
|
||||
assignee: assignee,
|
||||
project: project,
|
||||
sprint: sprint,
|
||||
assignee,
|
||||
project,
|
||||
sprint,
|
||||
number: 0,
|
||||
rank: '',
|
||||
status: '' as Ref<IssueStatus>,
|
||||
priority: priority,
|
||||
priority,
|
||||
dueDate: null,
|
||||
comments: 0,
|
||||
subIssues: 0,
|
||||
@@ -132,13 +132,13 @@
|
||||
object = {
|
||||
title: '',
|
||||
description: '',
|
||||
assignee: assignee,
|
||||
project: project,
|
||||
sprint: sprint,
|
||||
assignee,
|
||||
project,
|
||||
sprint,
|
||||
number: 0,
|
||||
rank: '',
|
||||
status: '' as Ref<IssueStatus>,
|
||||
priority: priority,
|
||||
priority,
|
||||
dueDate: null,
|
||||
comments: 0,
|
||||
subIssues: 0,
|
||||
|
||||
@@ -45,7 +45,7 @@
|
||||
title: label,
|
||||
count: value,
|
||||
isSelected: selected.includes(sprint),
|
||||
onSelect: () => onUpdate({ sprint: sprint }, index)
|
||||
onSelect: () => onUpdate({ sprint }, index)
|
||||
})
|
||||
}
|
||||
return onBack
|
||||
|
||||
@@ -35,7 +35,7 @@
|
||||
function editSpendReport (event: MouseEvent): void {
|
||||
showPopup(
|
||||
TimeSpendReportPopup,
|
||||
{ issue: value.attachedTo, issueClass: value.attachedToClass, value: value, assignee: value.employee },
|
||||
{ issue: value.attachedTo, issueClass: value.attachedToClass, value, assignee: value.employee },
|
||||
eventToHTMLElement(event)
|
||||
)
|
||||
}
|
||||
|
||||
+1
-1
@@ -49,7 +49,7 @@
|
||||
function editSpendReport (event: MouseEvent, value: TimeSpendReport): void {
|
||||
showPopup(
|
||||
TimeSpendReportPopup,
|
||||
{ issue: value.attachedTo, issueClass: value.attachedToClass, value: value, assignee: value.employee },
|
||||
{ issue: value.attachedTo, issueClass: value.attachedToClass, value, assignee: value.employee },
|
||||
eventToHTMLElement(event)
|
||||
)
|
||||
}
|
||||
|
||||
@@ -42,10 +42,10 @@
|
||||
let object: Data<IssueTemplate> = {
|
||||
title: '',
|
||||
description: '',
|
||||
assignee: assignee,
|
||||
project: project,
|
||||
sprint: sprint,
|
||||
priority: priority,
|
||||
assignee,
|
||||
project,
|
||||
sprint,
|
||||
priority,
|
||||
estimation: 0,
|
||||
children: [],
|
||||
labels: [],
|
||||
|
||||
@@ -57,7 +57,7 @@
|
||||
assignee: null,
|
||||
project: null,
|
||||
priority: IssuePriority.NoPriority,
|
||||
sprint: sprint,
|
||||
sprint,
|
||||
estimation: 0
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user