Fix string display
This commit is contained in:
parent
0088e5df2e
commit
b89eb0103d
@ -57,7 +57,7 @@ extension MetadataValue: CustomStringConvertible {
|
|||||||
case .date(let value):
|
case .date(let value):
|
||||||
return value.timeAndDateText
|
return value.timeAndDateText
|
||||||
case .numerical(let value, let unit):
|
case .numerical(let value, let unit):
|
||||||
return String(format: "%.3f %s", value, unit)
|
return String(format: "%.3f ", value) + unit
|
||||||
case .data(let value):
|
case .data(let value):
|
||||||
return value.description
|
return value.description
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user