|
@@ -113,8 +113,9 @@ extension DataTable {
|
|
|
Image(systemName: "circle.fill").foregroundColor(item.color)
|
|
Image(systemName: "circle.fill").foregroundColor(item.color)
|
|
|
Text(dateFormatter.string(from: item.date))
|
|
Text(dateFormatter.string(from: item.date))
|
|
|
.moveDisabled(true)
|
|
.moveDisabled(true)
|
|
|
- Text(item.type.name)
|
|
|
|
|
|
|
+ Text((item.isSMB ?? false) ? "🤖" : item.type.name)
|
|
|
Text(item.amountText).foregroundColor(.secondary)
|
|
Text(item.amountText).foregroundColor(.secondary)
|
|
|
|
|
+
|
|
|
if let duration = item.durationText {
|
|
if let duration = item.durationText {
|
|
|
Text(duration).foregroundColor(.secondary)
|
|
Text(duration).foregroundColor(.secondary)
|
|
|
}
|
|
}
|