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 @@ -17,6 +17,8 @@
[#1963](https://github.com/nextcloud/cookbook/pull/1963) @seyfeb
- Fix searching recipes by string.
[#1965](https://github.com/nextcloud/cookbook/pull/1965) @seyfeb
- Replace eye icon with close icon for cancelling recipe edit
[#1971](https://github.com/nextcloud/cookbook/pull/1971) @seyfeb

### Maintenance
- Add PHP lint checker to ensure valid (legacy) PHP syntax
Expand Down
8 changes: 4 additions & 4 deletions src/components/AppControls/AppControls.vue
Original file line number Diff line number Diff line change
Expand Up @@ -93,15 +93,15 @@
<NcActionInput
icon="icon-quota"
:value="filterValue"
@update:value="updateFilters"
aria-label="Filter current recipes"
@update:value="updateFilters"
>
<template #icon>
<FilterIcon :size="20" />
</template>
{{ t('cookbook', 'Filter') }}
</NcActionInput>
<NcActionInput @submit="search" aria-label="Search recipes">
<NcActionInput aria-label="Search recipes" @submit="search">
<template #icon>
<SearchIcon :size="20" />
</template>
Expand Down Expand Up @@ -142,7 +142,7 @@
"
:size="20"
/>
<eye-icon v-else :size="20" />
<AbortIcon v-else :size="20" />
</template>
</NcActionButton>
<NcActionButton
Expand Down Expand Up @@ -206,7 +206,7 @@ import LoadingIcon from 'icons/Loading.vue';
import CheckmarkIcon from 'icons/Check.vue';
import FilterIcon from 'icons/FilterOutline.vue';
import PrinterIcon from 'icons/Printer.vue';
import EyeIcon from 'icons/Eye.vue';
import AbortIcon from 'icons/Close.vue';
import ContentDuplicateIcon from 'icons/ContentDuplicate.vue';
import SearchIcon from 'icons/Magnify.vue';

Expand Down