GoAdminGroup / go-admin

Redundant else-blocks can be eliminated RVV-A0009
Anti-pattern
Major
1 occurrence in this check
if block ends with a continue statement, so drop this else and outdent its block
213		for i := 0; i < len(v); i++ {
214			if v[i] == t.Template(value[i]) {
215				continue
216			} else {217				return false
218			}
219		}