allow touch icon

This commit is contained in:
Salem Yaslem 2023-05-30 12:07:32 +03:00
parent 47316d6234
commit ff3dea1fa6

View File

@ -194,9 +194,8 @@ function stepUp(path: string) {
<v-row no-gutters>
<v-col cols="6" lg="2" md="3" sm="6" v-for="file of filesGridList" style="text-align: center;">
<v-list-item class="ma-2 pa-5 selectable" active-color="light-blue-darken-4" :value="file.path" rounded
@click="() => {
selectedItem = file.path;
}">
@click="selectedItem = file.path"
@touch="selectedItem = file.path">
<v-avatar class="mb-2" :color="file.isFolder ? 'light-blue-accent-4' : 'blue-grey-darken-1'">
<v-icon color="white">{{ file.isFolder ? 'mdi-folder' : 'mdi-file' }}</v-icon>
</v-avatar>