Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@
[#2099](https://github.com/nextcloud/cookbook/pull/2099) @j0hannesr0th
- Output correct stubs for tags, search and categories in the API
[#2270](https://github.com/nextcloud/cookbook/pull/2270) @christianlupus
- Fix warning in browser console
[#2281](https://github.com/nextcloud/cookbook/pull/2281) @christianlupus

### Documentation
- Improve structure of `README.md`
Expand Down
2 changes: 2 additions & 0 deletions src/components/List/RecipeFilterControlsInline.vue
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@
input-id="categoriesFilterInput"
:options="uniqueCategories"
:loading="isLoading"
:label-outside="true"
:close-on-select="false"
:multiple="true"
:no-wrap="true"
Expand Down Expand Up @@ -96,6 +97,7 @@
:placeholder="t('cookbook', 'All keywords')"
:aria-label="t('cookbook', 'Keywords')"
:aria-placeholder="t('cookbook', 'All keywords')"
:label-outside="true"
style="max-width: 25%"
@input="submitFilters"
>
Expand Down
1 change: 1 addition & 0 deletions src/components/List/RecipeSortSelect.vue
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
class="recipes-sorting-dropdown mr-4"
:clearable="false"
label="selectedLabel"
:label-outside="true"
:multiple="false"
:searchable="false"
:placeholder="t('cookbook', 'Select order')"
Expand Down