Skip to content

Commit c810b79

Browse files
shubham3211mariobehling
authored andcommitted
remove search bug (#1742)
1 parent 720d70c commit c810b79

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/backend/templates/schedule.hbs

+3-3
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@
161161
<img class="card-img-top speaker-image-large" src="images/avatar.png"/>
162162
{{/if}}
163163
</div>
164-
<div class="margin-down-10">{{name}}</div>
164+
<span class="margin-down-10">{{name}}</span>
165165
</a>
166166
{{#if organisation}}
167167
<div class="session-speakers-more margin-down-10">
@@ -631,7 +631,7 @@
631631
$(this).find('.schedule-track').each(function() {
632632
var id=$(this).attr('id');
633633
if ($(this).find('.tip-description').text().toUpperCase().indexOf(filterVal.toUpperCase()) >= 0 ||
634-
$(this).find('.session-speakers-list a p span').text().toUpperCase().indexOf(filterVal.toUpperCase()) >= 0 ||
634+
$(this).find('.session-speakers-list a span').text().toUpperCase().indexOf(filterVal.toUpperCase()) >= 0 ||
635635
$(this).find('.session-speakers-more').text().toUpperCase().indexOf(filterVal.toUpperCase()) >= 0 ||
636636
$(this).find('.event').text().toUpperCase().indexOf(filterVal.toUpperCase()) >= 0 ||
637637
$(this).find('.speaker-name').text().toUpperCase().indexOf(filterVal.toUpperCase()) >= 0) {
@@ -666,7 +666,7 @@
666666
});
667667
$('.session').each(function() {
668668
if ($(this).find('.session-name').text().toUpperCase().indexOf(filterVal.toUpperCase()) >= 0 ||
669-
$(this).find('.session-speakers-list a p span').text().toUpperCase().indexOf(filterVal.toUpperCase()) >= 0 ||
669+
$(this).find('.session-speakers-list a span').text().toUpperCase().indexOf(filterVal.toUpperCase()) >= 0 ||
670670
$(this).find('.session-speakers-more').text().toUpperCase().indexOf(filterVal.toUpperCase()) >= 0 ||
671671
$(this).find('.speaker-name').text().toUpperCase().indexOf(filterVal.toUpperCase()) >= 0) {
672672
$(this).show();

0 commit comments

Comments
 (0)