[fix] misspelling

This commit is contained in:
Max 2022-08-19 23:53:41 +08:00
parent 60828dc2ba
commit 22d93f10d9

View file

@ -106,8 +106,8 @@ func (table Table) validateList() error {
filters, ok := table.List.Layout["filters"].([]interface{})
if ok {
for idx, fliter := range filters {
fli, ok := fliter.(map[string]interface{})
for idx, filter := range filters {
fli, ok := filter.(map[string]interface{})
if !ok {
return fmt.Errorf("list.layout.filters.%d format error", idx)
}