Skip to content

Commit 477dd7d

Browse files
committed
bug - 成员列表标题应该是“成员管理”
1 parent 5864cc7 commit 477dd7d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Coding_iOS/Controllers/ProjectSetting/ProjectSetting.storyboard

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@
5858
<rect key="frame" x="0.0" y="0.0" width="341" height="44"/>
5959
<autoresizingMask key="autoresizingMask"/>
6060
<subviews>
61-
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="成员列表" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="nFV-2D-kBR">
61+
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="成员管理" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="nFV-2D-kBR">
6262
<rect key="frame" x="15" y="13" width="62" height="18"/>
6363
<fontDescription key="fontDescription" type="system" pointSize="15"/>
6464
<color key="textColor" red="0.1176470588" green="0.1764705882" blue="0.25882352939999997" alpha="1" colorSpace="calibratedRGB"/>

Coding_iOS/Controllers/ProjectViewController.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ - (void)requestForMyProject{
222222

223223
- (void)configNavBtnWithMyProject{
224224
if (self.curType != ProjectViewTypeTasks) {
225-
self.title = (self.curType == ProjectViewTypeCodes && _hideBranchTagButton)? _myCodeTree.ref: _myProject.name;
225+
self.title = (self.curType == ProjectViewTypeCodes && _hideBranchTagButton)? _myCodeTree.ref: (self.curType == ProjectViewTypeMembers)? @"成员管理": _myProject.name;
226226
}
227227
}
228228

0 commit comments

Comments
 (0)