We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parentf55fb7f commitdb37831Copy 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
exportdefaultReact.memo(EditorView,(prevProps,newProps)=>{
582
returnisEqual(prevProps,newProps);
583
});
584
+