Fix linting

This commit is contained in:
Johnpaul
2025-11-26 23:53:43 +01:00
parent f8ede78dc6
commit 335b72bc62
2 changed files with 2 additions and 4 deletions

View File

@@ -147,6 +147,7 @@
"capturePhoto": "Capture photo",
"captureModeOnRun": "On Run",
"captureModeManual": "Manually",
"capturedImage": "Captured Image",
"retakePhoto": "Retake photo",
"clickToStopLivePreview": "Click to stop live preview",
"failedToCaptureImage": "Failed to capture image",

View File

@@ -4,7 +4,7 @@
<img
:src="capturedImageUrl"
class="w-full rounded-lg bg-node-component-surface"
alt="Captured image"
:alt="t('g.capturedImage', 'Captured Image')"
/>
</div>
@@ -59,8 +59,6 @@
</div>
</div>
</div>
<LODFallback />
</div>
</template>
@@ -83,7 +81,6 @@ import { t } from '@/i18n'
import type { LGraphNode } from '@/lib/litegraph/src/LGraphNode'
import type { IBaseWidget } from '@/lib/litegraph/src/types/widgets'
import { useToastStore } from '@/platform/updates/common/toastStore'
import LODFallback from '@/renderer/extensions/vueNodes/components/LODFallback.vue'
import { api } from '@/scripts/api'
import { app } from '@/scripts/app'
import type { SimplifiedWidget } from '@/types/simplifiedWidget'