From 1bf8b96e956e1a05a4d0cb0569add58aa2590826 Mon Sep 17 00:00:00 2001 From: Kawika Avilla Date: Mon, 26 Jul 2021 08:24:01 -0700 Subject: [PATCH] [Bug] fix timeline icon in Visualize list (#659) 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 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 3e6bbed89bfb..3346db74d9ab 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', }),