File tree Expand file tree Collapse file tree
src/renderer/src/components Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -326,7 +326,7 @@ onMounted(() => {
326326 <!-- Tab group -->
327327 <!-- name of each tab group should be unique -->
328328< div class = " tabs tabs-box" >
329- < input type= " radio" name= " my_tabs_6" class = " tab" aria- label= " Files" checked= " checked " / >
329+ < input type= " radio" name= " my_tabs_6" class = " tab" : aria- label= " ` Files (${files.length})` " checked/ >
330330 < div class = " tab-content bg-base-100 border-base-300 p-6 max-h-[calc(100vh-9rem)] overflow-y-auto" >
331331 <!-- File list -->
332332 < div
@@ -578,13 +578,10 @@ onMounted(() => {
578578 </div>
579579 </div>
580580
581- <input type="radio" name="my_tabs_6" class="tab" aria-label="Completed" />
582- <div class="indicator">
583- <span class="indicator-item badge badge-secondary">{{files.length}}</span>
584- </div>
581+ <input type="radio" name="my_tabs_6" class="tab" :aria-label="`Completed ${processedFiles.length > 0 ? ( processedFiles.length ): ' ' }`" />
585582 <div class="tab-content bg-base-100 border-base-300 p-6 max-h-[calc(100vh-9rem)]">
586583 <!-- Results summary -->
587- <div v-if="processedFiles.length > 0" class="mt-6 bg-gray-800 rounded-lg p-4">
584+ <div v-if="processedFiles.length > 0" class="mt-6 border-3 border-midnight rounded-lg p-4">
588585 <h3 class="text-lg font-medium text-gray-200 mb-3">Results</h3>
589586 <ul class="space-y-2">
590587 <li
@@ -601,6 +598,10 @@ onMounted(() => {
601598 </li>
602599 </ul>
603600 </div>
601+ <div v-else>
602+ <p class="text-sm">No files have been converted yet</p>
603+ <p class="text-xs mt-2">Convert some files to see results here</p>
604+ </div>
604605 </div>
605606</div>
606607 </div>
You can’t perform that action at this time.
0 commit comments