🎨 Improve db tv relation render

This commit is contained in:
Daniel 2024-03-07 16:31:40 +08:00
parent 646d8c2b57
commit ac485ea545
No known key found for this signature in database
GPG key ID: 86211BA83DF03017

View file

@ -58,6 +58,10 @@ type Value struct {
}
func (value *Value) String() string {
if nil == value {
return ""
}
switch value.Type {
case KeyTypeBlock:
if nil == value.Block {