Skip to content

Commit

Permalink
Merge pull request #13085 from AlexVelezLl/fix-resource-selection-issues
Browse files Browse the repository at this point in the history
Fix lesson resource selection issues
  • Loading branch information
rtibbles authored Feb 18, 2025
2 parents 8febfbd + 7e94685 commit 0baef63
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -70,10 +70,6 @@
<div class="side-panel-subtitle">
{{ selectFromChannels$() }}
</div>
<KButton
icon="filter"
:text="searchLabel$()"
/>
</div>
<p
v-if="channels.length === 0"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@
:selectedResources="selectedResources"
:getTopicLink="getTopicLink"
:getResourceLink="getResourceLink"
:unselectableResourceIds="unselectableResourceIds"
@selectResources="$emit('selectResources', $event)"
@deselectResources="$emit('deselectResources', $event)"
/>
Expand Down Expand Up @@ -146,6 +147,11 @@
type: Function,
required: true,
},
unselectableResourceIds: {
type: Array,
required: false,
default: null,
},
},
computed: {
resultsCountMessage() {
Expand Down

0 comments on commit 0baef63

Please sign in to comment.