Skip to content
Snippets Groups Projects
Verified Commit 0aec0bb4 authored by Julia's avatar Julia
Browse files

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)
parent 7a1596ca
No related branches found
No related tags found
2 merge requests!733release 2024.9.1,!638Make post form attachments accessible
Pipeline #1250 passed with stage
in 25 minutes and 7 seconds
This commit is part of merge request !638. Comments created here will be created in the context of that merge request.
......@@ -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">
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment