-
Notifications
You must be signed in to change notification settings - Fork 52
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
Add navigator-title slot to NavigatorCard + fix small UI spacing details #846
base: main
Are you sure you want to change the base?
Add navigator-title slot to NavigatorCard + fix small UI spacing details #846
Conversation
fb8a334
to
9634f41
Compare
@swift-ci test |
@@ -184,6 +184,10 @@ export default { | |||
type: Object, | |||
default: () => ({}), | |||
}, | |||
customTag: { | |||
type: String, | |||
require: false, |
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.
require: false, |
Or required: false
@@ -13,7 +13,7 @@ | |||
:class="{ expanded, active: isActive, 'is-group': isGroupMarker }" | |||
:style="{ '--nesting-index': item.depth }" | |||
:data-nesting-index="item.depth" | |||
:id="`container-${item.uid}`" | |||
:id="item.uid ? `container-${item.uid}` : null" |
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.
I think we should keep the uid
as a requirement since this id value is important for the underlying dynamic scrolling library that is used for nav items.
Bug/issue #122909785, if applicable:
Summary
Dependencies
NA
Testing
Steps:
Checklist
Make sure you check off the following items. If they cannot be completed, provide a reason.
npm test
, and it succeeded