Rename "choices" var to "role_choices" for clarity

This commit is contained in:
Patrick Smith
2018-11-12 16:48:57 -05:00
parent 09b8169929
commit 947106a5b1
3 changed files with 5 additions and 5 deletions

View File

@@ -51,7 +51,7 @@ export default {
props: {
members: Array,
choices: Array,
role_choices: Array,
},
data: function () {
@@ -91,7 +91,7 @@ export default {
searchValue: '',
status: '',
role: '',
rolesByDisplayName: indexBy(prop('display_name'), this.choices),
rolesByDisplayName: indexBy(prop('display_name'), this.role_choices),
sortInfo: {
columnName: '',
isAscending: true,