Skip to content

Commit

Permalink
Merge branch 'dev' into rn-1494-fix-pdf-settings
Browse files Browse the repository at this point in the history
  • Loading branch information
tcaiger committed Oct 21, 2024
2 parents 13bb152 + 13ed0c9 commit 8392748
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 7 deletions.
2 changes: 1 addition & 1 deletion packages/meditrak-app/android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ android {
applicationId "com.tupaiameditrak"
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
versionCode 143
versionCode 144
versionName "1.14.144"
}
signingConfigs {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -495,7 +495,7 @@
CODE_SIGN_IDENTITY = "Apple Development";
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
CODE_SIGN_STYLE = Manual;
CURRENT_PROJECT_VERSION = 143;
CURRENT_PROJECT_VERSION = 144;
DEVELOPMENT_TEAM = 352QMCKRKJ;
"DEVELOPMENT_TEAM[sdk=iphoneos*]" = 352QMCKRKJ;
ENABLE_BITCODE = NO;
Expand Down Expand Up @@ -528,7 +528,7 @@
CODE_SIGN_IDENTITY = "Apple Development";
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
CODE_SIGN_STYLE = Manual;
CURRENT_PROJECT_VERSION = 143;
CURRENT_PROJECT_VERSION = 144;
DEVELOPMENT_TEAM = 352QMCKRKJ;
"DEVELOPMENT_TEAM[sdk=iphoneos*]" = 352QMCKRKJ;
INFOPLIST_FILE = TupaiaMediTrak/Info.plist;
Expand Down
14 changes: 10 additions & 4 deletions packages/tupaia-web/src/layout/UserMenu/UserInfo.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -106,10 +106,16 @@ export const UserInfo = ({ user, isLandingPage, secondaryColor, isLoggedIn }: Us
const userProjectName = user?.project?.name || 'Explore';
return (
<UsernameContainer $isLandingPage={isLandingPage}>
{userName} |
<Tooltip>
<ProjectButton modal={MODAL_ROUTES.PROJECT_SELECT}>{userProjectName}</ProjectButton>
</Tooltip>
{userName}
{!isLandingPage ? (
<>
{' '}
|
<Tooltip>
<ProjectButton modal={MODAL_ROUTES.PROJECT_SELECT}>{userProjectName}</ProjectButton>
</Tooltip>
</>
) : null}
</UsernameContainer>
);
}
Expand Down

0 comments on commit 8392748

Please sign in to comment.