We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bd265cc commit e300174Copy full SHA for e300174
src/lib/components/radioBoxes.svelte
@@ -13,7 +13,7 @@
13
{#if total}
14
{#each elements as element}
15
{@const value = element[variableName]?.toString()}
16
- <div class="box">
+ <div class="box" data-private>
17
<InputRadio
18
id={`${name}-${value}`}
19
{value}
src/lib/layout/notification.svelte
@@ -36,7 +36,7 @@
36
class={icon ? `icon-${icon}` : ''}
37
aria-hidden="true" />
38
</div>
39
- <div class="alert-sticky-content">
+ <div class="alert-sticky-content" data-private>
40
{#if title}
41
<h4 class="alert-sticky-title">{title}</h4>
42
{/if}
0 commit comments