Skip to content

Commit

Permalink
Merge pull request #1158 from MenamAfzal/fix/site-title
Browse files Browse the repository at this point in the history
Fix/site title  (Resolved #1155)
  • Loading branch information
FalkWolsky authored Sep 12, 2024
2 parents 34b3bc7 + db37831 commit 1a7c4d7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion client/packages/lowcoder/src/pages/editor/editorView.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -390,7 +390,7 @@ function EditorView(props: EditorViewProps) {
return (
<CustomShortcutWrapper>
<Helmet>
{application && <title>{application.name}</title>}
{application && <title>{appSettingsComp?.children?.title?.getView?.() || application?.name}</title>}
{isLowCoderDomain || isLocalhost && [
// Adding Support for iframely to be able to embedd apps as iframes
application?.name ? ([
Expand Down Expand Up @@ -581,3 +581,4 @@ function EditorView(props: EditorViewProps) {
export default React.memo(EditorView, (prevProps, newProps) => {
return isEqual(prevProps, newProps);
});

0 comments on commit 1a7c4d7

Please sign in to comment.