From 2934df60049b90a563f2357b30804604d1b7dc9c Mon Sep 17 00:00:00 2001 From: Kawika Avilla Date: Mon, 26 Jul 2021 08:24:01 -0700 Subject: [PATCH] [1.x][Bug] fix timeline icon in Visualize list Icon was not loading in the Visualize list because it was referencing a non-existant icon. Other parts of the code loads the icon correctly, so updated the icon to an existing icon. Issues resolved: https://github.com/opensearch-project/OpenSearch-Dashboards/issues/658 Backport PR: https://github.com/opensearch-project/OpenSearch-Dashboards/pull/659 Signed-off-by: Kawika Avilla --- src/plugins/vis_type_timeline/public/timeline_vis_type.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/vis_type_timeline/public/timeline_vis_type.tsx b/src/plugins/vis_type_timeline/public/timeline_vis_type.tsx index 3e6bbed89bf..3346db74d9a 100644 --- a/src/plugins/vis_type_timeline/public/timeline_vis_type.tsx +++ b/src/plugins/vis_type_timeline/public/timeline_vis_type.tsx @@ -53,7 +53,7 @@ export function getTimelineVisDefinition(dependencies: TimelineVisDependencies) return { name: TIMELINE_VIS_NAME, title: 'Timeline', - icon: 'visTimeline', + icon: 'visTimelion', description: i18n.translate('timeline.timelineDescription', { defaultMessage: 'Build time-series using functional expressions', }),