Skip to content

Commit fe98672

Browse files
authored
fix!: replace paragraph in login form footer with div (#9593)
1 parent c8c589f commit fe98672

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

packages/login/src/vaadin-login-form-wrapper.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ class LoginFormWrapper extends ThemableMixin(CSSInjectionMixin(PolylitMixin(LitE
7575
7676
<div part="footer">
7777
<slot name="footer"></slot>
78-
<p>${this.i18n.additionalInformation}</p>
78+
<div>${this.i18n.additionalInformation}</div>
7979
</div>
8080
</section>
8181
`;

packages/login/test/dom/__snapshots__/login-form.test.snap.js

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -715,8 +715,8 @@ snapshots["vaadin-login-form shadow default"] =
715715
<div part="footer">
716716
<slot name="footer">
717717
</slot>
718-
<p>
719-
</p>
718+
<div>
719+
</div>
720720
</div>
721721
</section>
722722
`;
@@ -750,8 +750,8 @@ snapshots["vaadin-login-form shadow error"] =
750750
<div part="footer">
751751
<slot name="footer">
752752
</slot>
753-
<p>
754-
</p>
753+
<div>
754+
</div>
755755
</div>
756756
</section>
757757
`;
@@ -788,9 +788,9 @@ snapshots["vaadin-login-form shadow i18n"] =
788788
<div part="footer">
789789
<slot name="footer">
790790
</slot>
791-
<p>
791+
<div>
792792
Jos tarvitset lisätietoja käyttäjälle.
793-
</p>
793+
</div>
794794
</div>
795795
</section>
796796
`;
Loading
Loading
Loading
Loading

0 commit comments

Comments
 (0)