Add spacing in type signature

This commit is contained in:
Julia Johannesen 2024-10-01 12:44:40 -04:00
parent 6abe3eea89
commit 76d95f2865
No known key found for this signature in database
GPG Key ID: 4A1377AF3E7FBC46
1 changed files with 1 additions and 1 deletions

View File

@ -140,7 +140,7 @@ async function crop(file: Misskey.entities.DriveFile): Promise<void> {
emit('replaceFile', file, newFile);
}
function showFileMenu(file: Misskey.entities.DriveFile, ev: MouseEvent|KeyboardEvent): void {
function showFileMenu(file: Misskey.entities.DriveFile, ev: MouseEvent | KeyboardEvent): void {
if (menuShowing) return;
const isImage = file.type.startsWith('image/');