-
-
Notifications
You must be signed in to change notification settings - Fork 4.1k
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
Replace vue2-datepicker with native date picker for share expiration dates #33915
Replace vue2-datepicker with native date picker for share expiration dates #33915
Conversation
4115f93
to
7fdb9da
Compare
@JuliaKirschenheuter can you please fix ESLint? Afterwards I'll give it a try... |
lets hope that ESLINT passes now... |
Possible performance regression detected Show Output
|
Possible performance regression detected Show Output
|
23ecf28
to
74b3079
Compare
Last rebase dropped the bundle updates. |
74b3079
to
56c8106
Compare
/compile amend / |
Replace vue2-datepicker with native date picker for expiration date. Signed-off-by: julia.kirschenheuter <[email protected]> Signed-off-by: nextcloud-command <[email protected]>
56c8106
to
1eac730
Compare
|
The acceptance tests also fail in other PRs -> unrelated |
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.
Works
CI failure unrelated |
/backport to stable25 |
Requires
Replace vue2-datepicker with native date picker for expiration date.
Replace moment.js date with Date Object.
Resolves #33914
Wrapper
new Date
should be aroundnew Date().setDate(new Date().getDate()......
, because the Date is needed, not a timestamp.