Fix linting conflicts (#1506)

Signed-off-by: Andrey Sobolev <haiodo@gmail.com>
This commit is contained in:
Andrey Sobolev 2022-04-24 22:16:53 +07:00 committed by GitHub
parent 0188f2dcc3
commit b9f78c5b43
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 4 additions and 5 deletions

View File

@ -5,7 +5,7 @@
"toolPackages": [
{
"packageName": "@microsoft/api-extractor",
"packageVersion": "7.22.2"
"packageVersion": "7.19.2"
}
]
}

View File

@ -117,7 +117,7 @@
<div class="float-left-box">
{#if object.date && hasDate(object)}
<div class="float-left ml-1">
<DatePresenter value={object.date} isInline={true} size="x-small" on:update={updateDate} />
<DatePresenter value={object.date} size="x-small" on:update={updateDate} />
</div>
{/if}
{#if (object.attachments ?? 0) > 0}

View File

@ -31,7 +31,7 @@
<div class="ap-space bottom-divider"/>
{#if archivedCards}
{#each archivedCards as card}
<KanbanCard object={card} dragged={false}/>
<KanbanCard object={card}/>
<div class="flex-center flex-gap-2 w-full">
<Button label={board.string.SendToBoard}
on:click={async (e) => {

View File

@ -4,7 +4,6 @@
import { createEventDispatcher } from 'svelte'
export let value: CardDate
export let isInline: boolean = false
export let size: 'x-small' | 'small' = 'small'
let isChecked = value?.isChecked

View File

@ -5,7 +5,7 @@
"toolPackages": [
{
"packageName": "@microsoft/api-extractor",
"packageVersion": "7.22.2"
"packageVersion": "7.19.2"
}
]
}