mirror of
https://github.com/hcengineering/platform.git
synced 2024-11-23 22:12:44 +03:00
Resolve merge conflicts
Signed-off-by: Anna No <anna.no@xored.com>
This commit is contained in:
parent
af614b71f6
commit
f747500d1c
@ -6,13 +6,11 @@
|
||||
export let value: CardDate
|
||||
export let isInline: boolean = false
|
||||
|
||||
const client = getClient()
|
||||
const { date } = value
|
||||
let isChecked = date?.isChecked
|
||||
let isChecked = value?.isChecked
|
||||
const dispatch = createEventDispatcher()
|
||||
|
||||
function check () {
|
||||
if (isInline || isChecked === undefined || date === undefined) return
|
||||
if (isInline || isChecked === undefined || !value) return
|
||||
dispatch('update', { ...value, isChecked })
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user