Skip to content

Commit

Permalink
fix: sort by sim name rather than sim title
Browse files Browse the repository at this point in the history
For #331.

Part of phetsims/qa#869.
  • Loading branch information
liammulh committed Dec 21, 2022
1 parent fc6c136 commit e7cee15
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/client/components/TranslationReportTable.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ const TranslationReportTable = ( { locale, localeName, wantsUntranslated } ) =>
<th>Sim Title
{
reportPopulated && reportRows.length > 1
? <SortButton onClick={() => handleSortButtonClick( 'simTitle' )}/>
? <SortButton onClick={() => handleSortButtonClick( 'simName' )}/>
: <></>
}
</th>
Expand Down

0 comments on commit e7cee15

Please sign in to comment.