Skip to content

Commit aa0ab8d

Browse files
authored
Merge pull request #179 from lohanidamodar/fix-dart-flutter-escaping-default-chars
marking escapeDollarSign as htmlsafe
2 parents fa94c9f + 0a1ed05 commit aa0ab8d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/SDK/SDK.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ public function __construct(Language $language, Spec $spec)
155155
}, ['is_safe' => ['html']]));
156156
$this->twig->addFilter(new TwigFilter('escapeDollarSign', function ($value) {
157157
return str_replace('$', '\$', $value);
158-
}));
158+
}, ['is_safe'=>['html']]));
159159
$this->twig->addFilter(new TwigFilter('paramsQuery', function ($value) {
160160
$query = '';
161161

0 commit comments

Comments
 (0)