From 3a8cf3a71f4f1e6fdc90366e58d2f539ae992ef0 Mon Sep 17 00:00:00 2001 From: huangjx Date: Sat, 23 Oct 2021 18:51:25 +0800 Subject: [PATCH] fixed overlapped content issue when display search results --- appinfo/info.xml | 2 +- src/App.vue | 4 +--- src/components/actionButton.vue | 1 - src/components/mainForm.vue | 1 - 4 files changed, 2 insertions(+), 6 deletions(-) diff --git a/appinfo/info.xml b/appinfo/info.xml index 14cacd2..a402134 100644 --- a/appinfo/info.xml +++ b/appinfo/info.xml @@ -5,7 +5,7 @@ Aria2 and youtube-dl web gui for nextcloud built-in torrent search;Start and stop Aria2 process, manage Aria2 from the web; Download videos from youtube, twitter and other sites; - 0.4.0 + 0.4.1 agpl jiaxinhuang NCDownloader diff --git a/src/App.vue b/src/App.vue index e084842..0833f26 100644 --- a/src/App.vue +++ b/src/App.vue @@ -102,7 +102,7 @@ export default { if (files) { let formWrapper = element.closest("form"); let url = formWrapper.getAttribute("action"); - Http.getInstance(url) + return Http.getInstance(url) .setHandler(function (data) { successCallback(data, element); }) @@ -121,13 +121,11 @@ export default {