mirror of https://github.com/1Panel-dev/1Panel
fix: 应用商店,应用安装成功后,列表没有实时刷新,一直显示安装中
parent
0d73852760
commit
690db783da
|
@ -56,7 +56,7 @@
|
|||
<el-icon v-if="row.status === 'Installing'" class="is-loading">
|
||||
<Loading />
|
||||
</el-icon>
|
||||
<Status :status="row.status"></Status>
|
||||
<Status :key="row.status" :status="row.status"></Status>
|
||||
</div>
|
||||
</template>
|
||||
</el-table-column>
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
</el-table-column>
|
||||
<el-table-column :label="$t('commons.table.status')" prop="status">
|
||||
<template #default="{ row }">
|
||||
<Status :status="row.status"></Status>
|
||||
<Status :key="row.status" :status="row.status"></Status>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column :label="$t('website.remark')" prop="remark"></el-table-column>
|
||||
|
|
Loading…
Reference in New Issue