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.
1 parent f55fb7f commit db37831Copy full SHA for db37831
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