mirror of
https://github.com/ParisNeo/lollms-webui.git
synced 2025-01-29 15:44:12 +00:00
fixed ui error in apps zoo
This commit is contained in:
parent
13ea5b9180
commit
8c1ac1f9b8
File diff suppressed because one or more lines are too long
2
web/dist/index.html
vendored
2
web/dist/index.html
vendored
@ -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>
|
||||
|
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user