mirror of
https://github.com/jxxghp/MoviePilot-Frontend.git
synced 2026-09-06 08:06:43 +08:00
fix: 更新未安装插件列表的过滤提示信息
This commit is contained in:
@@ -358,6 +358,8 @@ watch([marketList, filterForm], () => {
|
|||||||
const filterText = (filter: string, value: string | undefined) =>
|
const filterText = (filter: string, value: string | undefined) =>
|
||||||
!filter || (value && value.toLowerCase().includes(filter.toLowerCase()))
|
!filter || (value && value.toLowerCase().includes(filter.toLowerCase()))
|
||||||
|
|
||||||
|
sortedUninstalledList.value = []
|
||||||
|
|
||||||
// 过滤
|
// 过滤
|
||||||
marketList.value.forEach(value => {
|
marketList.value.forEach(value => {
|
||||||
if (value) {
|
if (value) {
|
||||||
@@ -631,8 +633,8 @@ onMounted(async () => {
|
|||||||
<NoDataFound
|
<NoDataFound
|
||||||
v-if="displayUninstalledList.length === 0 && isAppMarketLoaded"
|
v-if="displayUninstalledList.length === 0 && isAppMarketLoaded"
|
||||||
error-code="404"
|
error-code="404"
|
||||||
error-title="没有未安装插件"
|
error-title="没有数据"
|
||||||
error-description="所有可用插件均已安装。"
|
error-description="所有可用插件均已安装,如有筛选请调整筛选条件。"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</transition>
|
</transition>
|
||||||
|
|||||||
Reference in New Issue
Block a user