mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2025-10-20 12:27:18 +08:00
fix: 解决限制安装的应用程序在首页还能继续安装的问题 (#2295)
This commit is contained in:
parent
08f0147d81
commit
21755223e1
1 changed files with 2 additions and 1 deletions
|
@ -27,6 +27,7 @@
|
||||||
plain
|
plain
|
||||||
round
|
round
|
||||||
size="small"
|
size="small"
|
||||||
|
:disabled="app.limit == 1 && app.installed"
|
||||||
@click="goInstall(app.key)"
|
@click="goInstall(app.key)"
|
||||||
>
|
>
|
||||||
{{ $t('app.install') }}
|
{{ $t('app.install') }}
|
||||||
|
@ -57,7 +58,7 @@ let req = reactive({
|
||||||
});
|
});
|
||||||
|
|
||||||
let loading = ref(false);
|
let loading = ref(false);
|
||||||
let apps = ref<App.App[]>([]);
|
let apps = ref<App.AppDTO[]>([]);
|
||||||
|
|
||||||
const acceptParams = (): void => {
|
const acceptParams = (): void => {
|
||||||
search(req);
|
search(req);
|
||||||
|
|
Loading…
Add table
Reference in a new issue