mirror of
https://codeberg.org/yeentown/barkey
synced 2024-11-22 05:35:11 +00:00
Fix to match upstream
Upstreams linter was mad about the attributes not being before the event handlers, so this fixes that to match upstream when we end up merging 2024.9 (assuming it gets included in that release)
This commit is contained in:
parent
7a1596cad9
commit
0aec0bb402
1 changed files with 2 additions and 2 deletions
|
@ -9,11 +9,11 @@ SPDX-License-Identifier: AGPL-3.0-only
|
|||
<template #item="{element}">
|
||||
<div
|
||||
:class="$style.file"
|
||||
role="button"
|
||||
tabindex="0"
|
||||
@click="showFileMenu(element, $event)"
|
||||
@keydown.space.enter="showFileMenu(element, $event)"
|
||||
@contextmenu.prevent="showFileMenu(element, $event)"
|
||||
role="button"
|
||||
tabindex="0"
|
||||
>
|
||||
<MkDriveFileThumbnail :data-id="element.id" :class="$style.thumbnail" :file="element" fit="cover"/>
|
||||
<div v-if="element.isSensitive" :class="$style.sensitive">
|
||||
|
|
Loading…
Reference in a new issue