fix: Text comparison should be done with == not via is.

`is` will check if two objects are the same whereas `==` will check if
their values are the same which is what we want here.
This commit is contained in:
Feanil Patel
2021-03-01 15:38:24 -05:00
parent 02c46fc016
commit 8fa34d7974

View File

@@ -9,7 +9,7 @@
<span class="notification-message" aria-describedby="${ short_id }-problem-title">${notification_message}
</span>
<div class="notification-btn-wrapper">
% if notification_name is 'hint':
% if notification_name == 'hint':
<button type="button" class="btn btn-default btn-small notification-btn hint-button">
${_('Next Hint')}
</button>