-
Notifications
You must be signed in to change notification settings - Fork 77
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
fix(input-date-picker): reset active date picker date after closing #7219
Changes from 6 commits
73c73a9
f90a1ef
56723b8
fef8943
ba3b930
e5b456f
f8355d4
05fba22
501e07d
70420b6
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -268,7 +268,7 @@ export async function newProgrammaticE2EPage(): Promise<E2EPage> { | |
*/ | ||
export async function skipAnimations(page: E2EPage): Promise<void> { | ||
await page.addStyleTag({ | ||
content: `:root { --calcite-duration-factor: 0; }` | ||
content: `:root { --calcite-duration-factor: 0.01; }` | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Can you explain why changing this to 0.1 is required, is it a chromatic thing? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Sure. It's to work around this issue. Good catch though. I'll add a comment to this for context. |
||
}); | ||
} | ||
|
||
|
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.
thanks for hanging that up to DRY!