Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(settings): Fix not working filter/search option in admin settings #514

Merged
merged 2 commits into from
Apr 12, 2024
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
8 changes: 4 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"@nextcloud/dialogs": "^5.2.0",
"@nextcloud/initial-state": "^2.1.0",
"@nextcloud/router": "^3.0.0",
"@nextcloud/vue": "^8.11.1",
"@nextcloud/vue": "^8.11.2",
"vue": "^2.7.16",
"vue-material-design-icons": "^5.3.0",
"vuex": "^3.6.2"
Expand Down
2 changes: 1 addition & 1 deletion src/AdminSettings.vue
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<th class="retention-heading__after">
{{ t('files_retention','From date of') }}
</th>
<th class="retention-heading__action"></th>

Check warning on line 21 in src/AdminSettings.vue

View workflow job for this annotation

GitHub Actions / NPM lint

Require self-closing on HTML elements (<th>)
</tr>
</thead>
<tbody>
Expand All @@ -34,7 +34,7 @@
:disabled="loading"
:multiple="false"
:clearable="false"
:filter="filterAvailableTagList"
:options-filter="filterAvailableTagList"
:close-on-select="true" />
</td>
<td class="retention-rule__time">
Expand Down Expand Up @@ -208,7 +208,7 @@
this.loadingNotifyBefore = false
showError(t('files_retention', 'An error occurred while changing the setting'))
}.bind(this),
}

Check warning on line 211 in src/AdminSettings.vue

View workflow job for this annotation

GitHub Actions / NPM lint

Missing trailing comma
)
},

Expand Down
Loading