From df98aa4af0b1ebeb0ef8d76db75539c77bdc9f70 Mon Sep 17 00:00:00 2001 From: Ruben Fiszel Date: Sat, 1 Apr 2023 15:07:32 +0200 Subject: [PATCH] fix compile --- .../components/apps/components/display/table/AppTable.svelte | 5 ++--- frontend/src/lib/components/common/badge/Badge.svelte | 3 +-- 2 files changed, 3 insertions(+), 5 deletions(-) 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)} > -
+
{#each actionButtons as actionButton, actionIndex (actionButton?.id)}