Skip to content

Instantly share code, notes, and snippets.

@jinnyMcKindy
Created February 7, 2022 08:41
Show Gist options
  • Save jinnyMcKindy/755d96b68ac451e8060a0407f9ae1e64 to your computer and use it in GitHub Desktop.
Save jinnyMcKindy/755d96b68ac451e8060a0407f9ae1e64 to your computer and use it in GitHub Desktop.
headers
protected get headers(): TableHeader[] {
return [
{ value: "id", text: "ID", width: 70, sortable: false },
{
value: "fullname",
text: "ФИО пользователя",
width: 200,
sortable: false,
},
{
value: "role",
text: "Роль",
sortable: false,
},
{
value: "specialties",
text: "Специальность",
sortable: false,
},
{
value: "positions",
text: "Должность",
hidden: true,
width: 200,
sortable: false,
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment