feat(SW-3108): Added external link option to top primary button on content/collection page

Approved-by: Matilda Landström
This commit is contained in:
Erik Tiekstra
2025-09-15 06:47:10 +00:00
parent ce71fc421c
commit 5654569a11
5 changed files with 56 additions and 26 deletions

View File

@@ -25,6 +25,7 @@
fragment TopPrimaryButton_CollectionPage on CollectionPageHeader {
top_primary_button {
title
is_contentstack_link
linkConnection {
edges {
node {
@@ -43,6 +44,10 @@ fragment TopPrimaryButton_CollectionPage on CollectionPageHeader {
}
}
}
external_link {
href
title
}
}
}

View File

@@ -25,6 +25,7 @@
fragment TopPrimaryButton_ContentPage on ContentPageHeader {
top_primary_button {
title
is_contentstack_link
linkConnection {
edges {
node {
@@ -43,6 +44,10 @@ fragment TopPrimaryButton_ContentPage on ContentPageHeader {
}
}
}
external_link {
href
title
}
}
}