-
Notifications
You must be signed in to change notification settings - Fork 89
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
Polish Calendar UI (month view) #424
Conversation
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.
Looks good but we should rebase and remove the compabilityDate
if not needed.
components/app/Calendar.vue
Outdated
@@ -35,7 +33,7 @@ const onEventClick = (event: any, e: any) => { | |||
:events-on-month-view="true" | |||
:twelve-hour="true" | |||
:events="group.items" | |||
:start-week-on-sunday="false" | |||
:start-week-on-sunday="true" |
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.
We might have to rebase this branch because due to another PR that put this in.
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.
technically it won't overwrite because it's the same line.
nuxt.config.ts
Outdated
@@ -82,6 +81,8 @@ export default defineNuxtConfig({ | |||
componentIslands: true, | |||
}, | |||
|
|||
compatibilityDate: '2024-10-18', |
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'm not sure what this is for, was this needed?
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 from Nuxt. we don't necessarily need to include it in the PR.
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.
Sounds good @arashsheyda. I think it's good to merge once this is removed! Let me know what you think.
@johnjovero98 could you remove this line?
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 @johnjovero98 this is great I'm merging this. |
@allcontributors add @johnjovero98 for code |
I've put up a pull request to add @johnjovero98! 🎉 |
What issue is this referencing?
#394
Do these code changes work locally and have you tested that they fix the issue yourself?
Does the following command run without warnings or errors?
npm run pr-checks
Have you taken a look at our contributing guidelines?
My node version matches the one suggested when running
nvm use
?Here is a demo gif of the calendar redesign.
Note: I used pure CSS to make the changes instead of tailwind classes. I'm not sure if that will cause any performance issues. Please let me know if I need to refactor it :>