diff --git a/frontend/src/lib/components/apps/components/inputs/AppQuillEditor.svelte b/frontend/src/lib/components/apps/components/inputs/AppQuillEditor.svelte index d5715936e6..b22f82641d 100644 --- a/frontend/src/lib/components/apps/components/inputs/AppQuillEditor.svelte +++ b/frontend/src/lib/components/apps/components/inputs/AppQuillEditor.svelte @@ -2,7 +2,7 @@ import { getContext } from 'svelte' import { initOutput } from '../../editor/appUtils' import type { AppViewerContext, RichConfigurations } from '../../types' - + import '../../../../../../node_modules/quill/dist/quill.snow.css' import InputValue from '../helpers/InputValue.svelte' import InitializeComponent from '../helpers/InitializeComponent.svelte' @@ -90,7 +90,3 @@
{/if} - - diff --git a/frontend/src/routes/(root)/(logged)/schedules/+page.svelte b/frontend/src/routes/(root)/(logged)/schedules/+page.svelte index fc519c8100..1350a66dbc 100644 --- a/frontend/src/routes/(root)/(logged)/schedules/+page.svelte +++ b/frontend/src/routes/(root)/(logged)/schedules/+page.svelte @@ -275,9 +275,12 @@
-
+
+ {#if avg_s} +
Avg: {(avg_s / 1000).toFixed(2)}s
+ {/if} {#each jobs ?? [] as job} - {@const h = (avg_s ? job.duration_ms / avg_s : 1) * 10} + {@const h = (avg_s ? job.duration_ms / avg_s : 1) * 7 + 3}
@@ -292,9 +295,6 @@ {/each} - {#if avg_s} -
Avg: {(avg_s / 1000).toFixed(2)}s
- {/if}
edited by {edited_by}