Skip to content

Commit 322b181

Browse files
Use HTML tags for Prev or Next block
1 parent 29fcc9f commit 322b181

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/MasterForm.svelte

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -278,8 +278,8 @@
278278
<!-- end of StepForm -->
279279
</form>
280280
<div class="multistep-continue-button">
281-
<span on:click={previousStep} id="multistep-prev">{multiStepOptions.prevMessageText}</span>
281+
<span on:click={previousStep} id="multistep-prev">{@html multiStepOptions.prevMessageText}</span>
282282
|
283-
<span on:click={nextStep} id="multistep-next">{multiStepOptions.nextMessageText}</span>
283+
<span on:click={nextStep} id="multistep-next">{@html multiStepOptions.nextMessageText}</span>
284284
</div>
285285
</div>

0 commit comments

Comments
 (0)