This commit is contained in:
2020-11-18 18:57:43 +00:00
parent a6214abe23
commit f047ac40be
2 changed files with 7 additions and 3 deletions

View File

@@ -111,6 +111,7 @@ export default {
ret.push({
id: o.id,
name: o.name,
organization: o.organization,
emailAddress: o.emailAddress,
phone1: o.phone1,
phone2: o.phone2,
@@ -270,7 +271,8 @@ async function fetchTranslatedText(vm) {
"UserEmailAddress",
"UserPhone1",
"UserPhone2",
"UserPageAddress"
"UserPageAddress",
"Organization"
]);
}
@@ -290,6 +292,7 @@ async function cacheEnums(vm) {
async function createTableHeaders(vm) {
vm.headers = [
{ text: vm.$ay.t("User"), value: "name" },
{ text: vm.$ay.t("Organization"), value: "organization" },
{ text: vm.$ay.t("UserEmailAddress"), value: "emailAddress" },
{ text: vm.$ay.t("UserPhone1"), value: "phone1" },
{ text: vm.$ay.t("UserPhone2"), value: "phone2" },