We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5996151 commit d20c661Copy full SHA for d20c661
dispatch/templates/js/dispatch.js
@@ -29,14 +29,14 @@ function ListFiles() {
29
"pageLength": 50,
30
"aoColumns": [
31
{
32
- "mData" : null,
+ "mData": null,
33
"mRender": function (o) {
34
return '<a href="/file/edit?id=' +
35
- o['id'] +
36
- '" title="Click to Edit">' + o['filename'] +
37
- " " + `${o['encrypt'] ? "🔒" : ""}` +
38
- `${o['access'] == 1 ? "🌐" : ""}`+
39
- '</span>';
+ o['id'] +
+ '" title="Click to Edit">' + o['filename'] +
+ " " + `${o['encrypt'] ? "🔒" : ""}` +
+ `${(o['access'] == 1 || o['access'] == 2) ? "🌐" : ""}` +
+ '</a>';
40
}
41
},
42
0 commit comments