This is an automated email from the ASF dual-hosted git repository. ovilia pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/echarts-theme-builder.git
commit 9f65c2d41238791d7bff31fbb5caee4d42c8534e Author: Ovilia <[email protected]> AuthorDate: Thu Sep 25 16:35:32 2025 +0800 feat: only the first panel should be open by default --- src/components/ThemePanel.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/ThemePanel.vue b/src/components/ThemePanel.vue index 2e226bc..c5d00ca 100644 --- a/src/components/ThemePanel.vue +++ b/src/components/ThemePanel.vue @@ -476,7 +476,7 @@ interface Props { const props = defineProps<Props>() // Component state -const activeNames = ref(['functions', 'basic', 'visualMap', 'grid', 'legend']) // Panels expanded by default +const activeNames = ref(['functions']) const fileInput = ref<HTMLInputElement>() // Theme store --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
