fixed ui error in apps zoo

This commit is contained in:
Saifeddine ALOUI 2024-10-09 10:34:22 +02:00
parent 13ea5b9180
commit 8c1ac1f9b8
3 changed files with 3 additions and 3 deletions

File diff suppressed because one or more lines are too long

2
web/dist/index.html vendored
View File

@ -6,7 +6,7 @@
<script src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-svg.js"></script>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>LoLLMS WebUI</title>
<script type="module" crossorigin src="/assets/index-lf8IKEo6.js"></script>
<script type="module" crossorigin src="/assets/index-C-GomgrB.js"></script>
<link rel="stylesheet" crossorigin href="/assets/index-B-lXipjY.css">
</head>
<body>

View File

@ -209,7 +209,7 @@ export default {
},
filteredApps() {
return this.combinedApps.filter(app => {
const matchesSearch = app.name.toLowerCase().includes(this.toLowerCase()) ||
const matchesSearch = app.name.toLowerCase().includes(this.searchQuery.toLowerCase()) ||
app.description.toLowerCase().includes(this.searchQuery.toLowerCase()) ||
app.author.toLowerCase().includes(this.searchQuery.toLowerCase());
const matchesCategory = this.selectedCategory === 'all' || app.category === this.selectedCategory;