diff --git a/packages/web/src/tabs/ServerSummaryTab.svelte b/packages/web/src/tabs/ServerSummaryTab.svelte index c826eac88..e859b12dc 100644 --- a/packages/web/src/tabs/ServerSummaryTab.svelte +++ b/packages/web/src/tabs/ServerSummaryTab.svelte @@ -1,9 +1,28 @@ + + -{#await apiCall('server-connections/server-summary', { conid, refreshToken })} - -{:then summary} -
- ({ - ...col, - slot: col.columnType == 'bytes' ? 1 : col.columnType == 'actions' ? 2 : null, - }))} - > - {formatFileSize(row?.[col.fieldName])} - - {#each col.actions as action, index} - {#if index > 0} - | - {/if} - runAction(action, row)}>{action.header} - {/each} - - -
-{/await} + + {#await apiCall('server-connections/server-summary', { conid, refreshToken })} + + {:then summary} +
+ ({ + ...col, + slot: col.columnType == 'bytes' ? 1 : col.columnType == 'actions' ? 2 : null, + }))} + > + {formatFileSize(row?.[col.fieldName])} + + {#each col.actions as action, index} + {#if index > 0} + | + {/if} + runAction(action, row)}>{action.header} + {/each} + + +
+ {/await} + + + + +