Replace glFeatures with glLicensedFeatures for fileLocks in Repository
3 results - 2 files ``` app/assets/javascripts/repository/components/header_area/blob_overflow_menu.vue: 124 canModifyFile() { 125: return this.glFeatures.fileLocks ? this.eeCanModifyFile : true; 126 }, 127 isLocked() { 128: return this.glFeatures.fileLocks ? this.eeIsLocked : false; 129 }, ee/app/assets/javascripts/repository/components/lock_directory_button.vue: 101 showLockButton() { 102: return Boolean(this.glFeatures.fileLocks && this.user?.id); 103 }, ```
task