Skip to content

Latest commit

 

History

History
17 lines (14 loc) · 389 Bytes

File metadata and controls

17 lines (14 loc) · 389 Bytes

Fix formatting for comments inside JSX attribute (#14082 with by @fisker)

// Input
function MyFunctionComponent() {
  <button label=/*old*/"new">button</button>
}

// Prettier stable
Error: Comment "old" was not printed. Please report this error!

// Prettier main
function MyFunctionComponent() {
  <button label=/*old*/ "new">button</button>;
}