diff options
| author | Ariadne Conill <ariadne@dereferenced.org> | 2019-11-09 00:23:22 -0600 |
|---|---|---|
| committer | Ariadne Conill <ariadne@dereferenced.org> | 2019-11-09 00:23:22 -0600 |
| commit | 6dfe3cc911e748767368cc920cac2d91b4805992 (patch) | |
| tree | ecb801bda019ea9c670b8aec4f750e9913d104b2 /src/components/staff_panel | |
| parent | 90f764224d7518da08653db285c5343ca5d078ac (diff) | |
lint
Diffstat (limited to 'src/components/staff_panel')
| -rw-r--r-- | src/components/staff_panel/staff_panel.js | 3 | ||||
| -rw-r--r-- | src/components/staff_panel/staff_panel.vue | 3 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/components/staff_panel/staff_panel.js b/src/components/staff_panel/staff_panel.js index b4d23079..93e950ad 100644 --- a/src/components/staff_panel/staff_panel.js +++ b/src/components/staff_panel/staff_panel.js @@ -5,11 +5,10 @@ const StaffPanel = { BasicUserCard }, computed: { - staffAccounts() { + staffAccounts () { return this.$store.state.instance.staffAccounts } } } export default StaffPanel - diff --git a/src/components/staff_panel/staff_panel.vue b/src/components/staff_panel/staff_panel.vue index a74872d2..1d13003d 100644 --- a/src/components/staff_panel/staff_panel.vue +++ b/src/components/staff_panel/staff_panel.vue @@ -9,8 +9,9 @@ <div class="panel-body"> <basic-user-card v-for="user in staffAccounts" + :key="user.screen_name" :user="user" - v-bind:key="user.screen_name" /> + /> </div> </div> </div> |
