Skip to content

Commit

Permalink
Changed column name from Status to Access.
Browse files Browse the repository at this point in the history
  • Loading branch information
chuanlin2018 committed Mar 12, 2024
1 parent 349deb2 commit 5430b7b
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions angular/src/app/landing/data-files/data-files.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ export class DataFilesComponent implements OnInit, OnChanges {
{ field: 'name', header: 'Name', width: '60%' },
{ field: 'mediaType', header: 'File Type', width: 'auto' },
{ field: 'size', header: 'Size', width: 'auto' },
{ field: 'download', header: "Status", width: 'auto' }];
{ field: 'download', header: "Access", width: 'auto' }];

if (typeof (window) !== 'undefined') {
window.onresize = (e) => {
Expand Down Expand Up @@ -269,7 +269,6 @@ export class DataFilesComponent implements OnInit, OnChanges {

if(this.record['accessLevel'] === 'restricted public') {
this.checkAccessPageType();
this.cols[3]['header'] = "Access";
}

this.buildTree();
Expand Down

0 comments on commit 5430b7b

Please sign in to comment.