Skip to content

Commit

Permalink
Merge pull request #23 from Staffbase/RE-1180-fix-title-on-tabs-load
Browse files Browse the repository at this point in the history
WIP: RE-1180: Fix title on tabs module load.
  • Loading branch information
antoinevg authored Dec 9, 2019
2 parents d6def32 + 2d00315 commit ffdfd20
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions inspector/ios-inspector/ForgeModule/tabs_API.m
Original file line number Diff line number Diff line change
Expand Up @@ -170,6 +170,7 @@ + (void) setTitle:(ForgeTask*)task modal:(NSString*)modal title:(NSString*)title
if (viewController == nil) {
return;
}
viewController.title = title;
viewController.navigationBarTitle.title = title;
}

Expand Down
Binary file modified module/ios/module.a
Binary file not shown.
4 changes: 2 additions & 2 deletions module/manifest.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"changes": "* Fixed: Cannot open documents saved locally with `forge.file.saveURL`\n* Fixed: iOS 12 crashes when opening documents saved locally.\n* Fixed: `opaqueTopBar` property does not render properly on iOS 13.2.x.* Fixed: navigation and status bar tints aren't set on iOS when `opaqueTopBar` property is set.",
"changes": "* Fixed: Set title on iOS on tabs load",
"description": "APIs to deal with opening browser tabs and external sites within your app.\n\nThe tabs module allows you to open external sites in an un-trusted popup view that your users can close at any point.",
"min_platform_version": "v2.8.4",
"namespace": "tabs",
"platform_version": "v2.8.4",
"version": "3.4.2"
"version": "3.4.4"
}

0 comments on commit ffdfd20

Please sign in to comment.