Skip to content

Commit

Permalink
Fixing condidional operator
Browse files Browse the repository at this point in the history
  • Loading branch information
lcawl committed Sep 18, 2024
1 parent b9c2ff4 commit 8f120d1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/kbn-doc-links/src/get_doc_meta.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export const getDocLinksMeta = ({
buildFlavor,
}: GetDocLinksMetaOptions): DocLinksMeta => {
return {
version: kibanaBranch === 'main' ? 'master' : '8.x' ? '8.16' : kibanaBranch,
version: kibanaBranch === 'main' ? 'master' : kibanaBranch === '8.x' ? '8.16' : kibanaBranch,
ecs_version: 'current',
elasticWebsiteUrl: 'https://www.elastic.co/',
elasticGithubUrl: 'https://github.com/elastic/',
Expand Down

0 comments on commit 8f120d1

Please sign in to comment.