Skip to content

Commit b6f469a

Browse files
committed
new convention props oxlint
1 parent 6b5a3de commit b6f469a

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

app/components/FileUploader.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@
121121
</v-card-text>
122122

123123
<v-card-actions
124-
v-if="!props.auto_upload && internal_files.length"
124+
v-if="!auto_upload && internal_files.length"
125125
class="mt-6 pa-0"
126126
>
127127
<v-btn

app/components/Screenshot.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,10 +48,10 @@
4848
</script>
4949
<template>
5050
<GlassCard
51-
v-if="props.show_dialog"
51+
v-if="show_dialog"
5252
@click.stop
5353
title="Take a screenshot"
54-
:width="props.width"
54+
:width="width"
5555
:ripple="false"
5656
variant="panel"
5757
padding="pa-0"

app/components/Viewer/ContextMenuItem.vue

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
import GlassCard from "@ogw_front/components/GlassCard"
33
import { useTheme } from "vuetify"
44
import { useMenuStore } from "@ogw_front/stores/menu"
5-
import { useTheme } from "vuetify"
65
76
const CARD_WIDTH = 320
87
const CARD_HEIGHT = 500
@@ -102,7 +101,7 @@
102101
>
103102
<GlassCard
104103
@click.stop
105-
:title="props.tooltip"
104+
:title="tooltip"
106105
width="320"
107106
:max-height="maxCardHeight"
108107
:ripple="false"

0 commit comments

Comments
 (0)