diff --git a/frontend/src/lib/components/apps/components/display/table/AppTable.svelte b/frontend/src/lib/components/apps/components/display/table/AppTable.svelte index bfc3ff9b24..45c8f5af1e 100644 --- a/frontend/src/lib/components/apps/components/display/table/AppTable.svelte +++ b/frontend/src/lib/components/apps/components/display/table/AppTable.svelte @@ -6,7 +6,6 @@ ComponentCustomCSS, RichConfigurations } from '../../../types' - import InputValue from '../../helpers/InputValue.svelte' import type { AppInput } from '../../../inputType' import RunnableWrapper from '../../helpers/RunnableWrapper.svelte' import { writable } from 'svelte/store' @@ -100,7 +99,7 @@ ) } - function renderCell(x: any, props: any) { + function renderCell(x: any, props: any): any { try { return flexRender(x, props) } catch (e) { @@ -297,7 +296,7 @@ on:keypress={() => toggleRow(row, rowIndex)} on:click={() => toggleRow(row, rowIndex)} > -