Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2022-08-26 18:11:58 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2022-08-26 18:11:58 +0300
commit485728af8d6692d2df36f340b896dea79939ae0c (patch)
tree7595e61d1a5c92591f1065de648f7af70e26dcad /app/assets/javascripts/notes
parent93c1e0e4c231b0b13000a587a6949067ef7fb128 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'app/assets/javascripts/notes')
-rw-r--r--app/assets/javascripts/notes/components/discussion_filter.vue4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/assets/javascripts/notes/components/discussion_filter.vue b/app/assets/javascripts/notes/components/discussion_filter.vue
index 10e651033e8..8a42fb6bd85 100644
--- a/app/assets/javascripts/notes/components/discussion_filter.vue
+++ b/app/assets/javascripts/notes/components/discussion_filter.vue
@@ -177,7 +177,7 @@ export default {
v-for="{ text, key, cls } in $options.SORT_OPTIONS"
:key="text"
:class="cls"
- :is-check-item="true"
+ is-check-item
:is-checked="isSortDropdownItemActive(key)"
@click="fetchSortedDiscussions(key)"
>
@@ -192,7 +192,7 @@ export default {
<gl-dropdown-item
v-for="filter in filters"
:key="filter.value"
- :is-check-item="true"
+ is-check-item
:is-checked="filter.value === currentValue"
:class="{ 'is-active': filter.value === currentValue }"
:data-filter-type="filterType(filter.value)"