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 214f5d6 commit 7402a6bCopy full SHA for 7402a6b
client/modules/IDE/pages/MobileIDEView.jsx
@@ -39,7 +39,7 @@ import Dropdown from '../../../components/Dropdown';
39
const isUserOwner = ({ project, user }) =>
40
project.owner && project.owner.id === user.id;
41
42
-const getTitle = (title, unsavedChanges = false) => (
+const withChangeDot = (title, unsavedChanges = false) => (
43
<span>
44
{title}
45
<span className="editor__unsaved-changes">
@@ -110,7 +110,7 @@ const MobileIDEView = (props) => {
110
return (
111
<Screen fullscreen>
112
<Header
113
- title={getTitle(project.name, unsavedChanges)}
+ title={withChangeDot(project.name, unsavedChanges)}
114
subtitle={selectedFile.name}
115
>
116
<NavItem>
0 commit comments