bug fix #572
This commit is contained in:
parent
ba71ae6665
commit
564b75cdc0
|
@ -943,7 +943,7 @@ func (engine *Engine) mapType(v reflect.Value) (*core.Table, error) {
|
||||||
ctx.preTag = strings.ToUpper(tags[j-1])
|
ctx.preTag = strings.ToUpper(tags[j-1])
|
||||||
}
|
}
|
||||||
if j < len(tags)-1 {
|
if j < len(tags)-1 {
|
||||||
ctx.nextTag = strings.ToUpper(tags[j+1])
|
ctx.nextTag = tags[j+1]
|
||||||
} else {
|
} else {
|
||||||
ctx.nextTag = ""
|
ctx.nextTag = ""
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue