Skip to content

Commit bc138f7

Browse files
committed
fixed site Title in edit route
1 parent 1cf868e commit bc138f7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

client/packages/lowcoder/src/pages/editor/editorView.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -457,7 +457,7 @@ function EditorView(props: EditorViewProps) {
457457
return (
458458
<>
459459
<Helmet>
460-
{application && <title>{application.name}</title>}
460+
{application && <title>{appSettingsComp?.children?.title?.getView?.() || application?.name}</title>}
461461
{isLowCoderDomain || isLocalhost && [
462462
// Adding Support for iframely to be able to embedd apps as iframes
463463
application?.name ? ([

0 commit comments

Comments
 (0)