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 fac6124 commit d46a885Copy full SHA for d46a885
1 file changed
CodeEdit/Features/Welcome/Views/RecentProjectItem.swift
@@ -27,13 +27,15 @@ struct RecentProjectItem: View {
27
.aspectRatio(contentMode: .fit)
28
.frame(width: 32, height: 32)
29
VStack(alignment: .leading) {
30
- Text(projectPath.components(separatedBy: "/").last ?? "").font(.system(size: 13))
+ Text(projectPath.components(separatedBy: "/").last ?? "")
31
+ .font(.system(size: 13))
32
.lineLimit(1)
33
Text(projectPath.abbreviatingWithTildeInPath())
34
.font(.system(size: 11))
35
36
.truncationMode(.head)
- }.padding(.trailing, 15)
37
+ }
38
+ .padding(.trailing, 15)
39
Spacer()
40
}
41
.contentShape(Rectangle())
0 commit comments