1
1
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:
2022-05-03 14:34:27 +02:00
parent 0fa22fbe72
commit eb1afed108

View File

@ -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}`;
}