Skip to content

Commit

Permalink
Show status of "Use workaround for default certificate" correctly.
Browse files Browse the repository at this point in the history
Small correction to display the status of "Use workaround for
default certificate" correctly.
  • Loading branch information
jhelmold authored and timopollmeier committed Jul 13, 2023
1 parent 0008815 commit cc76b05
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/web/pages/alerts/method.js
Original file line number Diff line number Diff line change
Expand Up @@ -626,7 +626,7 @@ const Method = ({method = {}, details = false, reportFormats = []}) => {
{_('Use workaround for default certificate')}
</TableData>
<TableData>
{data.tp_sms_tls_workaround.value === '1' ? 'Yes' : 'No'}
{data.tp_sms_tls_workaround.value === 1 ? 'Yes' : 'No'}
</TableData>
</TableRow>
)}
Expand Down

0 comments on commit cc76b05

Please sign in to comment.