Browse Source

fix lint errors

pull/333/head
margaretmeehan 5 years ago
parent
commit
2066a619a4
1 changed files with 3 additions and 2 deletions
  1. 5
      app/server/static/components/users.vue

5
app/server/static/components/users.vue

@ -16,9 +16,10 @@
b-select(
placeholder="e.g. Anne"
v-model="newRoleMapping.username"
v-on:input="option => {checkValidExistingUser(option); newRoleMapping.userid = option}"
v-on:input="option => {checkValidExistingUser(option);\
newRoleMapping.userid = option}"
)
option(v-for="otherUser in otherUsers", v-bind:value="otherUser.id", v-bind:key="otherUser.id")
option(v-for="otherUser in otherUsers", v-bind:value="otherUser.id")
| {{ otherUser.username }}
div.column

Loading…
Cancel
Save