Kaynağa Gözat

fix: Swap left/right classes for client table cells

Swap tr-table-rt and tr-table-lt on the size and totalGB elements in aClientTable.html so the size display and the total GB display are positioned correctly (size on the left, total on the right). This is a UI alignment fix with no functional logic changes.
MHSanaei 12 saat önce
ebeveyn
işleme
3313086071
1 değiştirilmiş dosya ile 2 ekleme ve 2 silme
  1. 2 2
      web/html/component/aClientTable.html

+ 2 - 2
web/html/component/aClientTable.html

@@ -94,7 +94,7 @@
       </table>
     </template>
     <div class="tr-table-box">
-      <div class="tr-table-rt">[[ SizeFormatter.sizeFormat(getSumStats(record, client.email)) ]]</div>
+      <div class="tr-table-lt">[[ SizeFormatter.sizeFormat(getSumStats(record, client.email)) ]]</div>
       <div class="tr-table-bar" v-if="!client.enable">
         <a-progress :stroke-color="themeSwitcher.isDarkTheme ? 'rgb(72 84 105)' : '#bcbcbc'" :show-info="false" :percent="statsProgress(record, client.email)" />
       </div>
@@ -104,7 +104,7 @@
       <div v-else class="infinite-bar tr-table-bar">
         <a-progress :show-info="false" :percent="100"></a-progress>
       </div>
-      <div class="tr-table-lt">
+      <div class="tr-table-rt">
         <template v-if="client.totalGB > 0">[[ client._totalGB + "GB" ]]</template>
         <span v-else class="tr-infinity-ch">&infin;</span>
       </div>