Skip to content

Commit

Permalink
Merge branch 'release/v0.7.3'
Browse files Browse the repository at this point in the history
  • Loading branch information
dreiekk committed May 31, 2023
2 parents c3a7b5b + 6f63b1e commit c16431d
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 19 deletions.
37 changes: 24 additions & 13 deletions package-lock.json

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

7 changes: 2 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "calcdav",
"version": "0.7.2",
"version": "0.7.3",
"private": true,
"description": "Simple caldav-client to sum up project hours from a calendar.",
"author": {
Expand All @@ -23,7 +23,7 @@
"@fortawesome/fontawesome-free": "^5.15.4",
"bootstrap-4": "^4.0.0",
"core-js": "^3.6.5",
"dav": "lambdabaa/dav",
"dav": "^1.8.0",
"electron-updater": "^4.3.1",
"excel4node": "^1.7.2",
"fs": "0.0.1-security",
Expand Down Expand Up @@ -70,9 +70,6 @@
],
"license": "MPL-2.0",
"overrides": {
"dav": {
"xmldom": "@xmldom/xmldom@0.8.2"
},
"jszip": "^3.9.1",
"dot-object": "^2.1.3",
"glob-parent": "^5.1.2"
Expand Down
6 changes: 5 additions & 1 deletion src/views/DashboardView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,11 @@ export default {
let search_parts = this.form.search.trim().split(' ');
let search_in_title = true;
search_parts.forEach((search_part) => {
if (!row.title.toLowerCase().includes(search_part.toLowerCase())) {
try {
if (!row.title.toLowerCase().includes(search_part.toLowerCase())) {
search_in_title = false;
}
} catch(e) {
search_in_title = false;
}
});
Expand Down

0 comments on commit c16431d

Please sign in to comment.