Merge pull request #26788 from edx/feanil/fix_warning

fix: Text comparison should be done with `==` not via is.
This commit is contained in:
Feanil Patel
2021-03-02 10:19:20 -05:00
committed by GitHub

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>