Skip to content

Commit

Permalink
Merge branch 'main' into database_triggers
Browse files Browse the repository at this point in the history
  • Loading branch information
dieriba committed Dec 26, 2024
2 parents e431b28 + 9bdf0e6 commit 8d46b20
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion frontend/src/lib/components/InstanceSetting.svelte
Original file line number Diff line number Diff line change
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
1 change: 1 addition & 0 deletions frontend/src/lib/components/Login.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -155,6 +155,7 @@
displayName: login.display_name || login.type
}))
saml = allLogins.saml
showPassword = (logins.length == 0 && !saml) || (email != undefined && email.length > 0)
} catch (e) {
logins = []
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 8d46b20

Please sign in to comment.