Minor update

This commit is contained in:
2025-08-18 21:06:34 +10:00
parent 164b39498b
commit 78eb01be23
2 changed files with 4 additions and 4 deletions
+3 -3
View File
@@ -186,7 +186,7 @@ struct LinkRowView: View {
.foregroundColor(.secondary)
.lineLimit(1)
} else if let text = link.text, !text.isEmpty {
Text("custom_content")
Text("custom_content - \(link.alias)")
.font(.caption)
.foregroundColor(.secondary)
.italic()
@@ -243,7 +243,7 @@ struct LinkRowView: View {
linkViewModel.openLink(link)
}
}) {
Image(systemName: link.isTemplate ? "arrow.right.circle.fill" : "arrow.up.right.circle.fill")
Image(systemName: "arrow.up.right.circle.fill")
.foregroundColor(.blue)
.font(.title2)
}
@@ -463,7 +463,7 @@ struct MarkdownContentView: View {
}
}
}
.navigationTitle("Custom Content")
.navigationTitle("Custom Content - \(link.alias)")
.navigationBarTitleDisplayMode(.inline)
.toolbar {
ToolbarItem(placement: .navigationBarLeading) {
+1 -1
View File
@@ -409,7 +409,7 @@ struct SearchResultRow: View {
.foregroundColor(.secondary)
.lineLimit(1)
} else {
Text("custom_content")
Text("custom_content - \(link.alias)")
.font(.caption)
.foregroundColor(.secondary)
.italic()