fix(basic.gblib): update ChatServices.ts #420

Closed
eltociear wants to merge 2540 commits from patch-1 into main
2 changed files with 1 additions and 2 deletions
Showing only changes of commit 97df425566 - Show all commits

View file

@ -508,7 +508,6 @@ export class SystemKeywords {
// Processes FILTER option to ensure parallel SET calls.
const filter = await DialogKeywords.getOption({ pid, name: 'filter' });
let titleAddress;
if (filter) {

View file

@ -53,7 +53,7 @@ import { SystemKeywords } from './SystemKeywords.js';
*/
export class WebAutomationServices {
static isSelector(name: any) {
return name.startsWith('.') || name.startsWith('#');
return name.startsWith('.') || name.startsWith('#') || name.startsWith('[');
}
private debugWeb: boolean;
private lastDebugWeb: Date;