You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fixed the issue that when the href property is undefined, the Button will also be rendered as a anchor.
Fixed the issue that Edge throws an error when setting the loading property.
exports[`Button should support link button 1`] =`<atarget="_blank"href="http://ant.design"type="button"class="ant-btn ant-btn-default"><span>link button</span></a>`;
41
+
exports[`Button should not render as link button when href is undefined 1`] =`<buttontype="button"class="ant-btn ant-btn-primary"><span>button</span></button>`;
42
+
43
+
exports[`Button should support link button 1`] =`<atarget="_blank"href="http://ant.design"class="ant-btn ant-btn-default"><span>link button</span></a>`;
0 commit comments