-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Allow for slides with no href PoC #42
base: main
Are you sure you want to change the base?
Conversation
@@ -30,16 +35,6 @@ msgstr "Omschrijving" | |||
msgid "Go to slide" | |||
msgstr "" | |||
|
|||
#: components/schema | |||
# defaultMessage: Headtitle | |||
msgid "Headtitle" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is a breaking change, and we need to at least copy over the existing translations
@@ -91,12 +91,12 @@ const SliderBody = ({ | |||
</div> | |||
</Message> | |||
)} | |||
{href && ( | |||
{(href || image) && ( |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The condition is confusing, although meaning the same as the above one, it's not the same negated. Could we unify them? Or use a ternary.
head_title: { | ||
id: 'Headtitle', | ||
defaultMessage: 'Headtitle', | ||
kicker: { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
breaking change
No description provided.