fix(FN-4218): resolve lint and schema-version expectation regressions

Fusion-Task-Id: FN-4218
Fusion-Task-Lineage: 0b50d7f4-5001-4eb6-9633-7b24b00097fd
This commit is contained in:
Fusion
2026-05-14 00:02:31 -07:00
committed by gsxdsm
parent 773f493419
commit 44228c9dc7
2 changed files with 3 additions and 3 deletions

View File

@@ -97,7 +97,7 @@ export class ExperimentSessionStore extends EventEmitter<ExperimentSessionStoreE
}
if (options.tag) {
where.push("tags LIKE ?");
params.push(`%\"${options.tag}\"%`);
params.push(`%"${options.tag}"%`);
}
if (options.search) {
where.push("(name LIKE ? OR COALESCE(workingDir, '') LIKE ?)");