Skip to content

Commit aced39a

Browse files
committed
fix(tui): add unicode flag to workflow items regex
1 parent c99f73e commit aced39a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

apps/pythinker-code/src/tui/components/messages/dynamic-workflow-mission-control.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -731,7 +731,7 @@ function itemLabel(item: unknown): string {
731731
* member (and object keys) are skipped, not counted as items.
732732
*/
733733
export function dynamicWorkflowPartialItemsFromArguments(argumentsText: string): string[] {
734-
const match = /"items"\s*:\s*\[/.exec(argumentsText);
734+
const match = /"items"\s*:\s*\[/u.exec(argumentsText);
735735
if (match === null) return [];
736736
const items: string[] = [];
737737
let depth = 0;

0 commit comments

Comments
 (0)