🐛 Fix incorrect method call syntax for retry button action

This commit is contained in:
2026-01-29 04:20:50 +00:00
parent 0bd9576426
commit c47e2199bb

View File

@@ -9,7 +9,7 @@
<!-- Error State --> <!-- Error State -->
<div v-else-if="error" class="error-state"> <div v-else-if="error" class="error-state">
<p class="error-message">{{ error }}</p> <p class="error-message">{{ error }}</p>
<button @click="filesState.loadStatus" class="btn-retry">Retry</button> <button @click="filesState.loadStatus()" class="btn-retry">Retry</button>
</div> </div>
<!-- No Files State --> <!-- No Files State -->