This is an automated email from the ASF dual-hosted git repository.
qiuxiafan pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/skywalking-booster-ui.git
The following commit(s) were added to refs/heads/main by this push:
new 54c236ba fix: optimize search reset and format in marketplace (#392)
54c236ba is described below
commit 54c236bacf47f7dfb59aadede663b3e41d471ea7
Author: Chen Ziyan <[email protected]>
AuthorDate: Thu Apr 18 17:27:56 2024 +0800
fix: optimize search reset and format in marketplace (#392)
---
src/views/Marketplace.vue | 2 ++
1 file changed, 2 insertions(+)
diff --git a/src/views/Marketplace.vue b/src/views/Marketplace.vue
index c4dae5a2..daabc86a 100644
--- a/src/views/Marketplace.vue
+++ b/src/views/Marketplace.vue
@@ -78,6 +78,7 @@ limitations under the License. -->
function searchMenus() {
if (!searchText.value) {
menus.value = appStore.allMenus;
+ currentItems.value = menus.value[0] || {};
return;
}
@@ -149,6 +150,7 @@ limitations under the License. -->
border-right: 1px solid var(--sw-marketplace-border);
align-content: flex-start;
height: 100%;
+ width: 100%;
overflow: auto;
}