Use non-path separator for branch directory rows

This commit is contained in:
Lawrence Chen 2026-02-20 22:35:14 -08:00
parent b3c28a8723
commit 277e95d07e

View file

@ -2744,7 +2744,7 @@ private struct TabItemView: View {
switch (branchText, directoryText) {
case let (branch?, directory?):
return "\(branch) / \(directory)"
return "\(branch) @ \(directory)"
case let (branch?, nil):
return branch
case let (nil, directory?):