summaryrefslogtreecommitdiff
path: root/Sora/Views/Generic
diff options
context:
space:
mode:
authorFuwn <[email protected]>2025-05-01 01:56:04 -0700
committerFuwn <[email protected]>2025-05-01 01:56:04 -0700
commit82bf8d37f0af120484755d6c0af45b6fff05c817 (patch)
tree15ca565430c16796f03b1582bfdc0b4aa2953db0 /Sora/Views/Generic
parentfeat: Development commit (diff)
downloadsora-testing-82bf8d37f0af120484755d6c0af45b6fff05c817.tar.xz
sora-testing-82bf8d37f0af120484755d6c0af45b6fff05c817.zip
feat: Development commit
Diffstat (limited to 'Sora/Views/Generic')
-rw-r--r--Sora/Views/Generic/GenericItemView.swift6
1 files changed, 6 insertions, 0 deletions
diff --git a/Sora/Views/Generic/GenericItemView.swift b/Sora/Views/Generic/GenericItemView.swift
index bb2be1f..af79736 100644
--- a/Sora/Views/Generic/GenericItemView.swift
+++ b/Sora/Views/Generic/GenericItemView.swift
@@ -27,6 +27,12 @@ struct GenericItemView<T: GenericItem>: View {
Text("On \(item.date.formatted()) from \(item.provider.rawValue)")
.font(.caption)
.foregroundStyle(Color.secondary)
+
+ if let folder = item.folder {
+ Text("In \(folder)")
+ .font(.caption)
+ .foregroundStyle(Color.secondary)
+ }
}
#endif
}