-
Notifications
You must be signed in to change notification settings - Fork 88
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
Change Prev/next links to buttons #2695
Conversation
8961ef6
to
da9e3de
Compare
Signed-off-by: Vanessa Pertsch <[email protected]>
da9e3de
to
d16c228
Compare
Signed-off-by: Joas Schilling <[email protected]>
{{ t('Close') }} | ||
</ActionButton> | ||
</Actions> | ||
<ButtonVue v-if="canClose && !closeButtonContained" |
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.
<ButtonVue v-if="canClose && !closeButtonContained" | |
<Button v-if="canClose && !closeButtonContained" |
suggestion (non-blocking): Rename ButtonVue to Button where it's used
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.
It was used like this before. Don't know why.
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.
When there are regular button
elements the names conflict, so we import the vue button as ButtonVue
{{ t('Close') }} | ||
</ActionButton> | ||
</Actions> | ||
<ButtonVue v-if="canClose && !closeButtonContained" |
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.
When there are regular button
elements the names conflict, so we import the vue button as ButtonVue
@@ -155,14 +155,14 @@ | |||
</Actions> | |||
|
|||
<!-- Close modal --> | |||
<Actions v-if="canClose && !closeButtonContained" class="header-close"> | |||
<ActionButton @click="close"> |
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.
Regression, fix in #3066
Signed-off-by: Vanessa Pertsch [email protected]