This commit is contained in:
Saifeddine ALOUI 2024-07-30 02:49:37 +02:00
parent 38d52d5b25
commit b27c83c3c3
4 changed files with 5 additions and 5 deletions

@ -1 +1 @@
Subproject commit ddcf439ffd5cab2af348841aea47ee2057021e4c
Subproject commit c68b687e7ce7a2dbb55570907ab2280e3f691a0b

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-6a853d50.js"></script>
<script type="module" crossorigin src="/assets/index-c4c0357a.js"></script>
<link rel="stylesheet" href="/assets/index-5b307d27.css">
</head>
<body>

View File

@ -72,13 +72,13 @@
<p class="text-xs text-gray-500 italic h-16 overflow-y-auto">{{ app.disclaimer }}</p>
</div>
<div class="flex flex-wrap gap-2">
<button v-if="app.installed" @click="uninstallApp(app.name)" class="bg-red-500 hover:bg-red-600 text-white px-2 py-1 rounded text-sm">
<button v-if="app.installed" @click="uninstallApp(app.folder_name)" class="bg-red-500 hover:bg-red-600 text-white px-2 py-1 rounded text-sm">
Uninstall
</button>
<button v-else-if="app.existsInFolder" @click="deleteApp(app.name)" class="bg-yellow-500 hover:bg-yellow-600 text-white px-2 py-1 rounded text-sm">
Delete
</button>
<button v-else @click="installApp(app.name)" class="bg-blue-500 hover:bg-blue-600 text-white px-2 py-1 rounded text-sm">
<button v-else @click="installApp(app.folder_name)" class="bg-blue-500 hover:bg-blue-600 text-white px-2 py-1 rounded text-sm">
Install
</button>
<button v-if="app.installed" @click="editApp(app)" class="bg-purple-500 hover:bg-purple-600 text-white px-2 py-1 rounded text-sm">