Merge remote-tracking branch 'origin/dev' into dev

This commit is contained in:
Vanessa
2023-10-13 09:37:35 +08:00

View File

@@ -162,6 +162,9 @@ func (value *Value) Compare(other *Value) int {
}
return strings.Compare(v1, v2)
}
if nil != value.Template && nil != other.Template {
return strings.Compare(value.Template.Content, other.Template.Content)
}
return 0
}