Skip to content

Commit

Permalink
chore: update code style
Browse files Browse the repository at this point in the history
  • Loading branch information
paulpestov committed Mar 19, 2023
1 parent e7c29ba commit fd5d861
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 9 deletions.
11 changes: 4 additions & 7 deletions src/components/metadata/Actor.vue
Original file line number Diff line number Diff line change
Expand Up @@ -12,17 +12,14 @@ import MetadataValue from '@/components/metadata/MetadataValue.vue';
export default {
name: 'Actor',
components: {MetadataValue},
components: { MetadataValue },
props: {
data: {
type: Array,
default: () => []
}
default: () => [],
},
},
mounted() {
console.log(this)
}
}
};
</script>

<style scoped>
Expand Down
4 changes: 2 additions & 2 deletions src/components/metadata/ManifestMetadata.vue
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export default {
name: 'ManifestMetadata',
components: {
MetadataItem,
Actor
Actor,
},
computed: {
manifest() {
Expand Down Expand Up @@ -60,7 +60,7 @@ export default {
},
actor() {
return this.manifest?.actor;
}
},
},
};
</script>
Expand Down

0 comments on commit fd5d861

Please sign in to comment.