We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a035efa commit 5812a76Copy full SHA for 5812a76
CHANGELOG.md
@@ -29,8 +29,9 @@ class Pages::MyApp::MyExamplePage < Matestack::Ui::Page
29
def response
30
components {
31
div do
32
- heading size: 1, text: "Hello #{@user.name}" # is not escaped
33
- plain "Hello #{@user.name}" # is not escaped
+ heading size: 1, text: "Hello #{@user.name}" # was not escaped , from 0.7.4 on it's escaped
+ plain "Hello #{@user.name}" # was not escaped, from 0.7.4 on it's escaped
34
+ unescaped "Hello #{@user.name}" # is not escaped, as intended
35
end
36
}
37
0 commit comments