Skip to content

Commit

Permalink
fix: typos
Browse files Browse the repository at this point in the history
Signed-off-by: axel7083 <[email protected]>
  • Loading branch information
axel7083 committed May 3, 2024
1 parent deb4a1a commit a862caa
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion packages/frontend/src/pages/InferenceServers.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ const columns: Column<InferenceServer>[] = [
new Column<InferenceServer>('Status', { width: '70px', renderer: ServiceStatus, align: 'center' }),
new Column<InferenceServer>('Name', { width: '1fr', renderer: ServiceColumnName, align: 'left' }),
new Column<InferenceServer>('Model', { renderer: ServiceColumnModelName, align: 'left' }),
new Column<InferenceServer>('Action', { width: '80px', renderer: ServiceAction, align: 'right' }),
new Column<InferenceServer>('Actions', { width: '80px', renderer: ServiceAction, align: 'right' }),
];
const row = new Row<InferenceServer>({ selectable: _service => true });
Expand Down
6 changes: 3 additions & 3 deletions packages/frontend/src/pages/Models.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ async function importModel() {
{#if filteredModels.length > 0}
<Table kind="model" data="{filteredModels}" columns="{columns}" row="{row}"></Table>
{:else}
<div role="status">There is no model yet</div>
<div role="status">There are no models yet</div>
{/if}
</Route>

Expand All @@ -143,7 +143,7 @@ async function importModel() {
{#if localModels.length > 0}
<Table kind="model" data="{localModels}" columns="{columns}" row="{row}"></Table>
{:else}
<div role="status">There is no model yet</div>
<div role="status">There are no models yet</div>
{/if}
</Route>

Expand All @@ -161,7 +161,7 @@ async function importModel() {
{#if remoteModels.length > 0}
<Table kind="model" data="{remoteModels}" columns="{columns}" row="{row}"></Table>
{:else}
<div role="status">There is no model yet</div>
<div role="status">There are no models yet</div>
{/if}
</Route>
{/if}
Expand Down

0 comments on commit a862caa

Please sign in to comment.