Skip to content
Snippets Groups Projects
Commit 9e2d2c81 authored by Steinwender, Tamara's avatar Steinwender, Tamara
Browse files

Hide permission columns

parent f11d28ae
Branches
No related tags found
No related merge requests found
Pipeline #12911 passed
......@@ -156,12 +156,12 @@ export class NextcloudFilePicker extends ScopedElementsMixin(DBPLitElement) {
const minutes = ("0" + timestamp.getMinutes()).slice(-2);
return date + "." + month + "." + year + " " + hours + ":" + minutes;
}},
{title: "rights", field: "props.permissions"},
{title: "acl", field: "props.acl-list.acl.acl-permissions"}
{title: "rights", field: "props.permissions", visible: false},
{title: "acl", field: "props.acl-list.acl.acl-permissions", visible: false}
],
initialSort:[
{column:"basename", dir:"asc", visible: false},
{column:"type", dir:"asc", visible: false},
{column:"basename", dir:"asc"},
{column:"type", dir:"asc"},
],
rowFormatter: (row) => {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment