Skip to content

Commit

Permalink
nits script lang
Browse files Browse the repository at this point in the history
  • Loading branch information
rubenfiszel committed Dec 25, 2024
1 parent d440a71 commit 03694dc
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion frontend/src/lib/components/AuthSettings.svelte
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<script lang="typescript">
<script lang="ts">
import { enterpriseLicense } from '$lib/stores'
import { Alert, Button, Tab, Tabs } from './common'
Expand Down
4 changes: 2 additions & 2 deletions frontend/src/lib/components/InstanceSetting.svelte
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<script lang="typescript">
<script lang="ts">
import { isCloudHosted } from '$lib/cloud'
import { enterpriseLicense, isCriticalAlertsUIOpen } from '$lib/stores'
import {
Expand Down Expand Up @@ -184,7 +184,7 @@
<SimpleEditor
autoHeight
class="editor"
lang={setting.codeAreaLang ?? "txt"}
lang={setting.codeAreaLang ?? 'txt'}
bind:code={$values[setting.key]}
fixedOverflowWidgets={false}
/>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1464,7 +1464,7 @@
<FlowProgressBar {job} class="py-4" />
<div class="w-full mt-10 mb-20">
<FlowStatusViewer
jobId={job.id}
jobId={job?.id ?? ''}
on:jobsLoaded={({ detail }) => {
job = detail
}}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -912,7 +912,7 @@
/>
<div class="w-full mt-10">
<FlowStatusViewer
jobId={job.id}
jobId={job?.id ?? ''}
on:jobsLoaded={({ detail }) => {
job = detail
}}
Expand Down

0 comments on commit 03694dc

Please sign in to comment.