Skip to content

Commit 1a7c4d7

Browse files
authoredSep 12, 2024··
Merge pull request #1158 from MenamAfzal/fix/site-title
Fix/site title (Resolved #1155)
2 parents 34b3bc7 + db37831 commit 1a7c4d7

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed
 

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -390,7 +390,7 @@ function EditorView(props: EditorViewProps) {
390390
return (
391391
<CustomShortcutWrapper>
392392
<Helmet>
393-
{application && <title>{application.name}</title>}
393+
{application && <title>{appSettingsComp?.children?.title?.getView?.() || application?.name}</title>}
394394
{isLowCoderDomain || isLocalhost && [
395395
// Adding Support for iframely to be able to embedd apps as iframes
396396
application?.name ? ([
@@ -581,3 +581,4 @@ function EditorView(props: EditorViewProps) {
581581
export default React.memo(EditorView, (prevProps, newProps) => {
582582
return isEqual(prevProps, newProps);
583583
});
584+

0 commit comments

Comments
 (0)
Please sign in to comment.