Skip to content
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

feat(playground): document tree rendering #52

Merged
merged 10 commits into from
Nov 16, 2023
Prev Previous commit
Next Next commit
Update Node.vue
  • Loading branch information
neSpecc committed Nov 15, 2023

Unverified

This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
commit ccac86d5eaec099cfc27e06f086cb69af4b5c197
3 changes: 1 addition & 2 deletions packages/playground/src/components/Node.vue
Original file line number Diff line number Diff line change
@@ -31,8 +31,7 @@ function getClassProperties<T extends object>(object: T): PropsList<T> {
const descriptors = Object.getOwnPropertyDescriptors(object);

return Object.entries(descriptors)
// eslint-disable-next-line no-unused-vars, @typescript-eslint/no-unused-vars
.filter(([_name, descriptor]) => {
.filter(([, descriptor]) => {
return descriptor.get !== undefined;
})
.map(([ name ]) => {