We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a69a3d0 commit 0dcb87cCopy full SHA for 0dcb87c
1 file changed
src/frontend/src/services/PlanDataService.tsx
@@ -792,7 +792,7 @@ export class PlanDataService {
792
if (!source) return null;
793
794
// question=( "...") OR ('...')
795
- const questionRegex = /question=(?:"((?:\\.|[^"])*)"|'((?:\\.|[^'])*)')/;
+ const questionRegex = /question=(?:"((?:[^"\\]|\\.)*)"|'((?:[^'\\]|\\.)*)')/;
796
const qMatch = source.match(questionRegex);
797
if (!qMatch) return null;
798
0 commit comments