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
214		for i := 0; i < len(v); i++ {
215			if v[i] == t.Template(value[i]) {
216				continue
217			} else {218				return false
219			}
220		}