Skip to content

Commit d1f833d

Browse files
Acr tab order updated
1 parent 23dcba6 commit d1f833d

File tree

4 files changed

+4
-5
lines changed

4 files changed

+4
-5
lines changed

admin-ui/app/locales/en/translation.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -653,7 +653,6 @@
653653
"aliases": "Aliases",
654654
"api_config": "Config API properties",
655655
"basic": "Basic",
656-
"built_in": "Built In",
657656
"securityDropdown": {
658657
"adminUiRoles": "Admin UI Roles",
659658
"capabilities": "Capabilities",

admin-ui/plugins/auth-server/components/AuthN/Basic.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ function Basic() {
3232
const acrs = useSelector((state) => state.acrReducer.acrReponse)
3333
const { permissions: cedarPermissions } = useSelector((state) => state.cedarPermissions)
3434

35-
SetTitle(t('menus.built_in'))
35+
SetTitle(t('menus.basic'))
3636

3737
useEffect(() => {
3838
const authorizePermissions = async () => {

admin-ui/plugins/auth-server/components/AuthN/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import DefaultAcr from './DefaultAcr'
1212
function AuthNPage() {
1313
const tabNames = [
1414
{ name: 'default acr', path: '' },
15-
{ name: 'built in', path: '' },
15+
{ name: 'basic', path: '' },
1616
{ name: 'ldap servers', path: '' },
1717
{ name: 'scripts', path: '' },
1818
{ name: 'aliases', path: '' },
@@ -23,7 +23,7 @@ function AuthNPage() {
2323
switch (tabName) {
2424
case 'default acr':
2525
return <DefaultAcr />
26-
case 'built in':
26+
case 'basic':
2727
return <Basic />
2828
case 'ldap servers':
2929
return <LdapListingPage />

admin-ui/plugins/auth-server/redux/features/authNSlice.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ const initialState = {
66
{
77
name: 'simple_password_auth',
88
level: '-1',
9-
description: 'Built-in default password authentication',
9+
description: 'Basic default password authentication',
1010
samlACR: 'urn:oasis:names:tc:SAML:2.0:ac:classes:PasswordProtectedTransport',
1111
primaryKey: 'uid',
1212
passwordAttribute: 'userPassword',

0 commit comments

Comments
 (0)