RemoveFirstLastQuotes

This commit is contained in:
sjd210 2023-07-04 13:42:08 +01:00
parent 3640bf77ba
commit e1ef5764b8

View File

@ -89,7 +89,7 @@ export abstract class SqlDatasource extends DataSourceWithBackend<SQLQuery, SQLO
if (Array.isArray(value)) {
const quotedValues = value.map((v) => this.getQueryModel().quoteLiteral(v));
return quotedValues.join(',');
return quotedValues.join(',').slice(1, -1);
}
return value;