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 8c89a0a commit efa041aCopy full SHA for efa041a
2 files changed
packages/tables/src/Columns/Summarizers/Range.php
@@ -155,11 +155,11 @@ public function toEmbeddedHtml(): string
155
156
<?php if (filled($from) || filled($to)) { ?>
157
<span>
158
- <?= $from ?>
+ <?= e($from) ?>
159
160
<?= (filled($from) && filled($to)) ? '-' : '' ?>
161
162
- <?= $to ?>
+ <?= e($to) ?>
163
</span>
164
<?php } ?>
165
</div>
packages/tables/src/Columns/Summarizers/Values.php
@@ -47,7 +47,7 @@ public function toEmbeddedHtml(): string
47
<ul <?= $this->isBulleted() ? 'class="fi-bulleted"' : '' ?>>
48
<?php foreach ($state as $stateItem) { ?>
49
<li>
50
- <?= $this->formatState($stateItem) ?>
+ <?= e($this->formatState($stateItem)) ?>
51
</li>
52
53
</ul>
0 commit comments