mirror of
https://github.com/Fabio286/antares.git
synced 2025-06-05 21:59:22 +02:00
fix: LIKE operator in table filter not properly working, closes #242
This commit is contained in:
@ -137,6 +137,9 @@ export default {
|
||||
case 'IS NOT NULL':
|
||||
value = '';
|
||||
break;
|
||||
case 'LIKE':
|
||||
value = `${sw}%${filter.value}%${sw}`;
|
||||
break;
|
||||
default:
|
||||
value = `${sw}${filter.value}${sw}`;
|
||||
}
|
||||
|
Reference in New Issue
Block a user