🎨 Update av

This commit is contained in:
Daniel
2023-08-02 20:26:17 +08:00
parent 81ae9a22cd
commit 29d82aadfc

View File

@@ -376,11 +376,6 @@ func (table *Table) FilterRows() {
for _, row := range table.Rows {
pass := true
for j, index := range colIndexes {
c := table.Columns[index]
if c.Type == KeyTypeBlock {
continue
}
if !row.Cells[index].Value.CompareOperator(table.Filters[j].Value, table.Filters[j].Operator) {
pass = false
break