Skip to content

Commit

Permalink
Turn off er (#1849)
Browse files Browse the repository at this point in the history
* hide examiner records

* version bump
  • Loading branch information
andrewsetterfield authored Dec 11, 2024
1 parent e3e96cc commit a20918f
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion config.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version='1.0' encoding='utf-8'?>
<widget id="uk.gov.dvsa.drivingexaminerservices" version="4.17.0.0" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0">
<widget id="uk.gov.dvsa.drivingexaminerservices" version="4.17.0.1" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0">
<name>DES</name>
<description>An application for DVSA driving examiners to conduct driving tests digitally</description>
<content src="index.html" />
Expand Down
4 changes: 2 additions & 2 deletions ios/App/App/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>4.17.0.0</string>
<string>4.17.0.1</string>
<key>CFBundleURLTypes</key>
<array>
<dict>
Expand All @@ -40,7 +40,7 @@
<string>companyportal</string>
</array>
<key>CFBundleVersion</key>
<string>4.17.0.0</string>
<string>4.17.0.1</string>
<key>LSRequiresIPhoneOS</key>
<true/>
<key>NSCameraUsageDescription</key>
Expand Down
12 changes: 6 additions & 6 deletions src/app/app.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import { Observable, Subscription, merge } from 'rxjs';

import { SENTRY_ERRORS } from '@app/sentry-error-handler';
import { SideMenuClosed, SideMenuItemSelected, SideMenuOpened } from '@pages/dashboard/dashboard.actions';
import { DASHBOARD_PAGE, EXAMINER_RECORDS, LOGIN_PAGE, UNUPLOADED_TESTS_PAGE } from '@pages/page-names.constants';
import { DASHBOARD_PAGE, LOGIN_PAGE, UNUPLOADED_TESTS_PAGE } from '@pages/page-names.constants';
import { unsubmittedTestSlotsCount$ } from '@pages/unuploaded-tests/unuploaded-tests.selector';
import { AccessibilityService } from '@providers/accessibility/accessibility.service';
import { AppConfigProvider } from '@providers/app-config/app-config';
Expand Down Expand Up @@ -60,11 +60,11 @@ export class AppComponent extends LogoutBasePageComponent implements OnInit {
showUnSubmittedCount: true,
hideWhenRole: [ExaminerRole.DLG],
},
{
title: EXAMINER_RECORDS,
descriptor: 'Examiner records',
hideWhenRole: [ExaminerRole.DLG],
},
// {
// title: EXAMINER_RECORDS,
// descriptor: 'Examiner records',
// hideWhenRole: [ExaminerRole.DLG],
// },
// {
// title: PASS_CERTIFICATES,
// descriptor: 'Missing / spoiled pass certificates',
Expand Down

0 comments on commit a20918f

Please sign in to comment.