mirror of
https://github.com/plankanban/planka.git
synced 2025-07-31 11:09:43 +02:00
feat: Colorize due date and make it toggleable (#845)
This commit is contained in:
parent
198518a51a
commit
c4c6d738a5
12 changed files with 207 additions and 38 deletions
|
@ -20,6 +20,9 @@ export default class extends BaseModel {
|
|||
relatedName: 'ownCards',
|
||||
}),
|
||||
dueDate: attr(),
|
||||
dueCompleted: attr({
|
||||
getDefault: () => false,
|
||||
}),
|
||||
stopwatch: attr(),
|
||||
isSubscribed: attr({
|
||||
getDefault: () => false,
|
||||
|
@ -248,6 +251,7 @@ export default class extends BaseModel {
|
|||
'name',
|
||||
'description',
|
||||
'dueDate',
|
||||
'dueCompleted',
|
||||
'stopwatch',
|
||||
]),
|
||||
...payload.card,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue