mirror of
https://github.com/gitbutlerapp/gitbutler.git
synced 2024-12-28 20:15:20 +03:00
Fix lint errors required by new version of prettier
This commit is contained in:
parent
19a27b0712
commit
183e044700
@ -55,7 +55,7 @@ export function ghResponseToInstance(
|
||||
email: pr.user.email || undefined,
|
||||
isBot: pr.user.type.toLowerCase() == 'bot',
|
||||
gravatarUrl: new URL(pr.user.avatar_url)
|
||||
}
|
||||
}
|
||||
: null,
|
||||
labels: labels,
|
||||
draft: pr.draft || false,
|
||||
|
@ -10,8 +10,8 @@
|
||||
$: message = $page.error
|
||||
? $page.error.message
|
||||
: $page.status === 404
|
||||
? 'Page not found'
|
||||
: 'Something went wrong';
|
||||
? 'Page not found'
|
||||
: 'Something went wrong';
|
||||
</script>
|
||||
|
||||
<div class="flex h-full flex-1">
|
||||
|
@ -48,7 +48,7 @@
|
||||
? await cloud.projects.update($user$?.access_token, e.detail.api.repository_id, {
|
||||
name: e.detail.title,
|
||||
description: e.detail.description
|
||||
})
|
||||
})
|
||||
: undefined;
|
||||
|
||||
projectService.updateProject({
|
||||
|
@ -28,10 +28,10 @@
|
||||
project.preferred_key === 'generated'
|
||||
? 'generated'
|
||||
: project.preferred_key === 'default'
|
||||
? 'default'
|
||||
: project.preferred_key === 'gitCredentialsHelper'
|
||||
? 'gitCredentialsHelper'
|
||||
: 'local';
|
||||
? 'default'
|
||||
: project.preferred_key === 'gitCredentialsHelper'
|
||||
? 'gitCredentialsHelper'
|
||||
: 'local';
|
||||
|
||||
let privateKeyPath =
|
||||
project.preferred_key === 'generated' ||
|
||||
|
Loading…
Reference in New Issue
Block a user