Skip to content

Commit bcb7246

Browse files
committed
renamed TagUpdatedView to EditedTagView
1 parent 2c22676 commit bcb7246

3 files changed

Lines changed: 7 additions & 7 deletions

File tree

GoInfoGame/GoInfoGame.xcodeproj/project.pbxproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@
176176
C78737AF2E4C9E3B00289D13 /* FloatingLabelTextField.swift in Sources */ = {isa = PBXBuildFile; fileRef = C78737AE2E4C9E3200289D13 /* FloatingLabelTextField.swift */; };
177177
C787F3422E9CD34F00BEF0A6 /* ForceUpdateManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = C787F3412E9CD34900BEF0A6 /* ForceUpdateManager.swift */; };
178178
C78E8BC22EDF20E6002215C0 /* UndoItemConfirmationView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C78E8BC12EDF20E6002215C0 /* UndoItemConfirmationView.swift */; };
179-
C78E8BC42EDF2D55002215C0 /* TagUpdatedView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C78E8BC32EDF2D55002215C0 /* TagUpdatedView.swift */; };
179+
C78E8BC42EDF2D55002215C0 /* EditedTagView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C78E8BC32EDF2D55002215C0 /* EditedTagView.swift */; };
180180
C7927B552E42363000A7A34E /* XCAssets+Generated.swift in Sources */ = {isa = PBXBuildFile; fileRef = C7927B532E42363000A7A34E /* XCAssets+Generated.swift */; };
181181
C79C3B7A2ED4559500F80364 /* AccessibilityModeView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C79C3B792ED4559500F80364 /* AccessibilityModeView.swift */; };
182182
C79C3B7C2ED5786100F80364 /* NearestQuestCard.swift in Sources */ = {isa = PBXBuildFile; fileRef = C79C3B7B2ED5786100F80364 /* NearestQuestCard.swift */; };
@@ -546,7 +546,7 @@
546546
C787EF162E9676CC00BEF0A6 /* GoInfoGame.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = GoInfoGame.entitlements; sourceTree = "<group>"; };
547547
C787F3412E9CD34900BEF0A6 /* ForceUpdateManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ForceUpdateManager.swift; sourceTree = "<group>"; };
548548
C78E8BC12EDF20E6002215C0 /* UndoItemConfirmationView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = UndoItemConfirmationView.swift; sourceTree = "<group>"; };
549-
C78E8BC32EDF2D55002215C0 /* TagUpdatedView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TagUpdatedView.swift; sourceTree = "<group>"; };
549+
C78E8BC32EDF2D55002215C0 /* EditedTagView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = EditedTagView.swift; sourceTree = "<group>"; };
550550
C7927B532E42363000A7A34E /* XCAssets+Generated.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "XCAssets+Generated.swift"; sourceTree = "<group>"; };
551551
C79C3B792ED4559500F80364 /* AccessibilityModeView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AccessibilityModeView.swift; sourceTree = "<group>"; };
552552
C79C3B7B2ED5786100F80364 /* NearestQuestCard.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NearestQuestCard.swift; sourceTree = "<group>"; };
@@ -1448,7 +1448,7 @@
14481448
C74AC4142EE198B50036E2C5 /* NoEditsView.swift */,
14491449
C78E8BC12EDF20E6002215C0 /* UndoItemConfirmationView.swift */,
14501450
C79EDA922EDA0BBD00D2B100 /* UndoItemView.swift */,
1451-
C78E8BC32EDF2D55002215C0 /* TagUpdatedView.swift */,
1451+
C78E8BC32EDF2D55002215C0 /* EditedTagView.swift */,
14521452
);
14531453
path = "Accessibility Mode";
14541454
sourceTree = "<group>";
@@ -2395,7 +2395,7 @@
23952395
FABF3D002B8607D80080EAC9 /* MeasureSidewalkView.swift in Sources */,
23962396
C76DA1A12DF0679F00451E63 /* LongFormModel.swift in Sources */,
23972397
C79EDA8F2ED9977700D2B100 /* DottedLineView.swift in Sources */,
2398-
C78E8BC42EDF2D55002215C0 /* TagUpdatedView.swift in Sources */,
2398+
C78E8BC42EDF2D55002215C0 /* EditedTagView.swift in Sources */,
23992399
FA18CAE72CC80A34008247F2 /* UploadPhotoModel.swift in Sources */,
24002400
FAFDA1FA2C6B861A00ECEAE9 /* FileStorageManager.swift in Sources */,
24012401
FAEE21DB2DCA1963002F9BEC /* UndoButton.swift in Sources */,

GoInfoGame/GoInfoGame/UI/Map/Accessibility Mode/TagUpdatedView.swift renamed to GoInfoGame/GoInfoGame/UI/Map/Accessibility Mode/EditedTagView.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
import SwiftUI
99

10-
struct TagUpdatedView: View {
10+
struct EditedTagView: View {
1111
let tagUpdate: (action: UndoItem.TagAction, key: String, value: String)
1212
var body: some View {
1313
VStack(alignment: .leading, content: {
@@ -27,5 +27,5 @@ struct TagUpdatedView: View {
2727
}
2828

2929
#Preview {
30-
TagUpdatedView(tagUpdate: (.added, "Key", "Value"))
30+
EditedTagView(tagUpdate: (.added, "Key", "Value"))
3131
}

GoInfoGame/GoInfoGame/UI/Map/Accessibility Mode/UndoItemConfirmationView.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ struct UndoItemConfirmationView: View {
7575

7676
List {
7777
ForEach(undoItem.tags, id: \.key) { item in
78-
TagUpdatedView(tagUpdate: item)
78+
EditedTagView(tagUpdate: item)
7979
.listRowInsets(EdgeInsets())
8080
}
8181
}

0 commit comments

Comments
 (0)