Skip to content

Commit b7b2ea7

Browse files
authored
Merge pull request #2852 from appwrite/fix-strings
Fix: icon and input issue
2 parents 4b4477e + 6ac671e commit b7b2ea7

2 files changed

Lines changed: 7 additions & 1 deletion

File tree

  • src/routes/(console)/project-[region]-[project]/databases/database-[database]/table-[table]/columns

bun.lock

Lines changed: 2 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/routes/(console)/project-[region]-[project]/databases/database-[database]/table-[table]/columns/+page.svelte

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -393,7 +393,11 @@
393393

394394
{#each updatedColumnsForSheet as column, index (column.key)}
395395
{@const isId = column.key === '$id'}
396-
{@const option = columnOptions.find((option) => option.type === column.type)}
396+
{@const option = columnOptions.find(
397+
(option) =>
398+
option.type === column.type &&
399+
option.format === ('format' in column ? column.format : undefined)
400+
)}
397401
{@const isSelectable =
398402
column['system'] || column.type === 'relationship' ? 'disabled' : true}
399403
<Spreadsheet.Row.Base {root} select={isSelectable} id={column.key}>

0 commit comments

Comments
 (0)