-
Notifications
You must be signed in to change notification settings - Fork 10
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 tag and candidate filter to comparison #448
Conversation
kyjanond
commented
Jan 9, 2023
- adds tags filtering for comparison page
- fixes scrolling and sticky header
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
@@ -23,7 +22,7 @@ defineProps<Props>(); | |||
corner="top-left" | |||
border | |||
shadow | |||
padding="medium" | |||
:padding="Object('medium')" |
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.
without Object it throws bunch of errors in the console. I don't understand the reasons really
frontend/package.json
Outdated
"@storybook/testing-library": "^0.0.13", | ||
"@storybook/vue3": "^v7.0.0-beta.12", | ||
"@storybook/vue3-vite": "^v7.0.0-beta.12", | ||
"@storybook/addon-essentials": "^v7.0.0-beta.20", |
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.
storybook updated
frontend/package.json
Outdated
@@ -66,10 +66,12 @@ | |||
"prettier": "^2.5.1", | |||
"prettier-plugin-sh": "^0.12.8", | |||
"prisma": "^4.6.1", | |||
"react": "^18.2.0", |
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.
needed by storybook
borderRadius: 'small', | ||
// eslint-disable-next-line vue/require-valid-default-prop | ||
padding: 'medium', | ||
padding: Object('medium') as Props['padding'], |
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.
without Object it throws bunch of errors in the console. I don't understand the reasons really
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.
WTF? It may be related to the bug in Vue, which should be resolved soon by the vuejs/core#7394 PR (already approved).
# Conflicts: # frontend/package-lock.json # frontend/package.json
ea90256
to
50ac760
Compare