mirror of
https://github.com/dataease/dataease.git
synced 2025-02-24 03:22:56 +08:00
fix(图表): 图表首次点击不重新加载 #13722
This commit is contained in:
parent
84f7a0c02c
commit
57e72c5aef
@ -443,6 +443,9 @@ const defaultPlaceholder = computed(() => {
|
||||
watch(
|
||||
() => allFields.value,
|
||||
() => {
|
||||
if (!showProperty('showFields')) {
|
||||
return
|
||||
}
|
||||
let result = []
|
||||
state.labelForm.showFields?.forEach(field => {
|
||||
if (allFields.value?.map(i => i.value).includes(field)) {
|
||||
|
@ -412,6 +412,9 @@ const defaultPlaceholder = computed(() => {
|
||||
watch(
|
||||
() => allFields.value,
|
||||
() => {
|
||||
if (!showProperty('showFields')) {
|
||||
return
|
||||
}
|
||||
let result = []
|
||||
state.tooltipForm.showFields?.forEach(field => {
|
||||
if (allFields.value?.map(i => i.value).includes(field)) {
|
||||
|
Loading…
Reference in New Issue
Block a user