Skip to content

Commit

Permalink
Merge pull request #9522 from marcellamaki/fix-coach-quiz-search
Browse files Browse the repository at this point in the history
Fix missing search results in coach quiz creation
  • Loading branch information
rtibbles committed Jun 21, 2022
2 parents df775b5 + 8243fc1 commit 8d3eddf
Showing 1 changed file with 4 additions and 2 deletions.
Expand Up @@ -105,7 +105,9 @@
/>
</div>
<div v-if="examCreationRoute">
<p>{{ coreString('selectFromBookmarks') }}</p>
<p v-if="bookmarksCount">
{{ coreString('selectFromBookmarks') }}
</p>
<KRouterLink
v-if="bookmarksCount"
:style="{ width: '100%' }"
Expand All @@ -121,7 +123,7 @@
</KRouterLink>
</div>

<div v-if="examCreationRoute || examTopicRoute">
<div v-if="examCreationRoute || examTopicRoute || inSearchMode">
<LessonsSearchBox
class="search-box"
@searchterm="handleSearchTerm"
Expand Down

0 comments on commit 8d3eddf

Please sign in to comment.