Skip to content

Commit

Permalink
Fix custom time range action after conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
Heenawter committed Jan 17, 2024
1 parent c91bc00 commit 362e53b
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -144,8 +144,8 @@ export const legacyEmbeddableToApi = (
(embeddable as VisualizeEmbeddable).getOutput().visTypeName === 'markdown';

const isImage = embeddable.type === 'image';
const isNavigation = embeddable.type === 'navigation';
return !isInputControl && !isMarkdown && !isImage && !isNavigation;
const isLinks = embeddable.type === 'links';
return !isInputControl && !isMarkdown && !isImage && !isLinks;
};

return {
Expand Down

0 comments on commit 362e53b

Please sign in to comment.