We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 538ba8c commit f77e2d4Copy full SHA for f77e2d4
public/js/query.js
@@ -296,11 +296,12 @@ export class SearchQueryWidget extends Component {
296
if (type) {
297
$('#' + type + '-sequence-notification').show('drop', { direction: 'up' }).addClass('active');
298
299
- this.notification_timeout = setTimeout(function () {
300
- $('.notifications .active').hide('drop', { direction: 'up' }).removeClass('active');
301
- }, 5000);
302
-
303
- if (type === 'mixed') {
+ //hide notification after 5s only for non-mixed sequences
+ if (type !== 'mixed') {
+ this.notification_timeout = setTimeout(function () {
+ $('.notifications .active').hide('drop', { direction: 'up' }).removeClass('active');
+ }, 5000);
304
+ } else {
305
this.indicateError();
306
}
307
0 commit comments