diff --git a/src/views/dashboard/configuration/Widget.vue b/src/views/dashboard/configuration/Widget.vue index c09a4c40..43c35125 100644 --- a/src/views/dashboard/configuration/Widget.vue +++ b/src/views/dashboard/configuration/Widget.vue @@ -124,7 +124,7 @@ export default defineComponent({ const title = computed(() => encodeURIComponent(widget.value.title || "")); const tips = computed(() => encodeURIComponent(widget.value.tips || "")); const hasAssociate = computed(() => - ["Bar", "Line", "Area"].includes( + ["Bar", "Line", "Area", "TopList"].includes( dashboardStore.selectedGrid.graph && dashboardStore.selectedGrid.graph.type ) diff --git a/src/views/dashboard/configuration/widget/RelatedTraceOptions.vue b/src/views/dashboard/configuration/widget/RelatedTraceOptions.vue index 0905e741..ca30da05 100644 --- a/src/views/dashboard/configuration/widget/RelatedTraceOptions.vue +++ b/src/views/dashboard/configuration/widget/RelatedTraceOptions.vue @@ -13,7 +13,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. -->