Skip to content

Commit

Permalink
change detail view layout
Browse files Browse the repository at this point in the history
  • Loading branch information
eisfeuer committed Aug 13, 2020
1 parent a0fa906 commit 8bfd588
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion dist/js/field.js

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions resources/js/components/DetailField.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@
<div>
Old
<ul>
<li v-for="value in field.value.old">
{{value}}
<li v-for="(value, key) in field.value.old">
{{key}}: {{value}}
</li>
</ul>
New
<ul>
<li v-for="value in field.value.attributes">
{{value}}
<li v-for="(value, key) in field.value.attributes">
{{key}}: {{value}}
</li>
</ul>
</div>
Expand Down

0 comments on commit 8bfd588

Please sign in to comment.