Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 34b3bc7 + db37831 commit 1a7c4d7Copy full SHA for 1a7c4d7
client/packages/lowcoder/src/pages/editor/editorView.tsx
@@ -390,7 +390,7 @@ function EditorView(props: EditorViewProps) {
390
return (
391
<CustomShortcutWrapper>
392
<Helmet>
393
- {application && <title>{application.name}</title>}
+ {application && <title>{appSettingsComp?.children?.title?.getView?.() || application?.name}</title>}
394
{isLowCoderDomain || isLocalhost && [
395
// Adding Support for iframely to be able to embedd apps as iframes
396
application?.name ? ([
@@ -581,3 +581,4 @@ function EditorView(props: EditorViewProps) {
581
export default React.memo(EditorView, (prevProps, newProps) => {
582
return isEqual(prevProps, newProps);
583
});
584
+
0 commit comments