This commit is contained in:
Saifeddine ALOUI 2024-11-17 01:11:32 +01:00
parent 7681f7838c
commit 35e13f8d84
5 changed files with 11 additions and 11 deletions

@ -1 +1 @@
Subproject commit c97ce2e73656f300c98f6b8724715d15470ae47a
Subproject commit 352caf44f4058b807d69b8954bae1dbb31e0a9d2

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

4
web/dist/index.html vendored
View File

@ -6,8 +6,8 @@
<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-DFuqs0Ac.js"></script>
<link rel="stylesheet" crossorigin href="/assets/index-DGsBdEiy.css">
<script type="module" crossorigin src="/assets/index-CYweNESX.js"></script>
<link rel="stylesheet" crossorigin href="/assets/index-FfsjzTPY.css">
</head>
<body>
<div id="app"></div>

View File

@ -5619,7 +5619,7 @@ export default {
if (binding_object.disclaimer){
this.$store.state.yesNoDialog.askQuestion(binding_object.disclaimer, 'Proceed', 'Cancel')
}
axios.post('/install_binding', { name: binding_object.binding.folder }).then((res) => {
axios.post('/install_binding', {client_id:this.$store.state.client_id, name: binding_object.binding.folder }).then((res) => {
if (res) {
this.isLoading = false
@ -5651,7 +5651,7 @@ export default {
},
onUnInstallBinding(binding_object){
this.isLoading = true
axios.post('/unInstall_binding', { name: binding_object.binding.folder }).then((res) => {
axios.post('/unInstall_binding', {client_id:this.$store.state.client_id, name: binding_object.binding.folder }).then((res) => {
if (res) {
this.isLoading = false
@ -5689,7 +5689,7 @@ export default {
},
onReinstallBinding(binding_object) {
this.isLoading = true
axios.post('/reinstall_binding', { name: binding_object.binding.folder }).then((res) => {
axios.post('/reinstall_binding', {client_id:this.$store.state.client_id, name: binding_object.binding.folder }).then((res) => {
if (res) {
this.isLoading = false