Skip to content

Commit f6b5c27

Browse files
authored
Merge pull request #2918 from appwrite/fix-col-width-for-index-col
fix: col width for index cols
2 parents adf369e + a635c99 commit f6b5c27

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

  • src/routes/(console)/project-[region]-[project]/databases/database-[database]/(entity)/views/indexes

src/routes/(console)/project-[region]-[project]/databases/database-[database]/(entity)/views/indexes/view.svelte

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,8 +74,8 @@
7474
const spreadsheetColumns = $derived([
7575
{
7676
id: 'key',
77-
width: getColumnWidth('key', $isSmallViewport ? 250 : 200),
78-
minimumWidth: $isSmallViewport ? 250 : 200,
77+
width: getColumnWidth('key', $isSmallViewport ? 250 : 280),
78+
minimumWidth: $isSmallViewport ? 250 : 280,
7979
resizable: true
8080
},
8181
{

0 commit comments

Comments
 (0)