lint fixes

This commit is contained in:
Pavel Laptev 2024-02-07 15:42:14 +01:00 committed by GitButler
parent 448be7fb20
commit 97cd4053a7
2 changed files with 37 additions and 39 deletions

View File

@ -103,9 +103,7 @@
selectable={$commitBoxOpen && !isUnapplied}
on:close={() => {
const selectedId = selected?.id;
selectedFiles.update((fileIds) =>
fileIds.filter((file) => file.id != selectedId)
);
selectedFiles.update((fileIds) => fileIds.filter((file) => file.id != selectedId));
}}
/>
<Resizer

View File

@ -44,11 +44,11 @@
icon="locked-small"
color="warning"
help="File changes cannot be moved because part of this file was already committed into this branch"
border>Locked</Tag
>Locked</Tag
>
{/if}
{#if file.conflicted}
<Tag icon="warning-small" color="error" border>Has conflicts</Tag>
<Tag icon="warning-small" color="error">Has conflicts</Tag>
{/if}
</div>
{/if}