-
Notifications
You must be signed in to change notification settings - Fork 4
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
refactoring: generic refactoring #37
base: dev
Are you sure you want to change the base?
Conversation
fyllekanin
commented
Aug 30, 2023
- Add file size limit to settings
- Remove unused variables
- Add "use" instead of using \
- Align vue files with 4 space indentation
- Add file size limit to settings - Remove unused variables - Add "use" instead of using \ - Align vue files with 4 space indentation
fetchSlips() | ||
} | ||
const fetchSlips = async () => { | ||
const next_url = slips.value.next_page_url |
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.
Wondering if this check can't be done above "fetchSlips", seems like unneeded code to run if next_page_url either way will stop it further ahead in callbacks
tooltip: { | ||
delay: { | ||
show: 100, | ||
delay: 100, |
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.
"delay" doesn't seem to be a supported delay property when looking at:
https://github.com/Akryum/floating-vue/blob/main/packages/floating-vue/src/config.ts
delay: 100, | ||
}, | ||
}, | ||
}, |
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.
trailing comma