Skip to content

Commit fa88b32

Browse files
authored
Merge pull request #2276 from JohnDuprey/dev
remove lighthouse requirement for tenant check
2 parents 8c68e72 + 4a2e532 commit fa88b32

File tree

2 files changed

+10
-7
lines changed

2 files changed

+10
-7
lines changed

Tools/Update-Version.ps1

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
Param($Version)
2+
Set-Location (Get-Item $PSScriptRoot).Parent.FullName
3+
$Files = @('version_latest.txt', 'public/version_latest.txt')
4+
foreach ($File in $Files) {
5+
Set-Content $File -Value $Version
6+
}
7+
8+
$Package = Get-Content package.json | ConvertFrom-Json
9+
$Package.version = $Version
10+
$Package | ConvertTo-Json -Depth 10 | Set-Content package.json

src/views/cipp/app-settings/SettingsGeneral.jsx

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -85,13 +85,6 @@ export function SettingsGeneral() {
8585
omit: showExtendedInfo,
8686
exportSelector: 'GDAPRoles',
8787
},
88-
{
89-
name: 'SAM User Roles',
90-
selector: (row) => row?.SAMUserRoles,
91-
cell: cellTableFormatter('SAMUserRoles', false, true),
92-
omit: showExtendedInfo,
93-
exportSelector: 'SAMUserRoles',
94-
},
9588
]
9689

9790
const checkGDAPColumns = [

0 commit comments

Comments
 (0)