Skip to content

Commit

Permalink
fix actions column width
Browse files Browse the repository at this point in the history
  • Loading branch information
feloy committed Jan 29, 2024
1 parent 6f135f1 commit 74cbcb4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/frontend/src/pages/Models.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ const columns: Column<ModelInfo>[] = [
new Column<ModelInfo>('Registry', { width: '2fr', renderer: ModelColumnRegistry }),
new Column<ModelInfo>('Popularity', { width: '1fr', renderer: ModelColumnPopularity }),
new Column<ModelInfo>('License', { width: '2fr', renderer: ModelColumnLicense }),
new Column<ModelInfo>('Actions', { align: 'right', width: '1fr', renderer: ModelColumnActions }),
new Column<ModelInfo>('Actions', { align: 'right', width: '80px', renderer: ModelColumnActions }),
];
const row = new Row<ModelInfo>({});
Expand Down

0 comments on commit 74cbcb4

Please sign in to comment.