Skip to content

Commit a09d643

Browse files
committed
Lint
Signed-off-by: Derek Ho <[email protected]>
1 parent 44983ad commit a09d643

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

public/apps/configuration/app-router.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* permissions and limitations under the License.
1414
*/
1515

16-
import { EuiBreadcrumb, EuiPage, EuiPageBody, EuiPageSideBar } from '@elastic/eui';
16+
import { EuiPage, EuiPageBody, EuiPageSideBar } from '@elastic/eui';
1717
import { flow, partial } from 'lodash';
1818
import React, { createContext, useState } from 'react';
1919
import { HashRouter as Router, Route, Switch, Redirect } from 'react-router-dom';
@@ -38,7 +38,7 @@ import { TenantList } from './panels/tenant-list/tenant-list';
3838
import { UserList } from './panels/user-list';
3939
import { Action, RouteItem, SubAction } from './types';
4040
import { ResourceType } from '../../../common';
41-
import { buildHashUrl, buildUrl } from './utils/url-builder';
41+
import { buildUrl } from './utils/url-builder';
4242
import { CrossPageToast } from './cross-page-toast';
4343
import { getDataSourceFromUrl, LocalCluster } from '../../utils/datasource-utils';
4444
import { getBreadcrumbs } from './utils/resource-utils';

public/apps/configuration/header/header-components.tsx

-1
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,6 @@ export const PageHeader = (props: HeaderProps & DescriptionProps & ControlProps)
8181
props.count
8282
);
8383
if (useNewUx) {
84-
8584
return (
8685
<>
8786
{props.descriptionControls ? (

public/apps/configuration/utils/resource-utils.tsx

+4-3
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515

1616
import { EuiBreadcrumb } from '@elastic/eui';
1717
import { ResourceType } from '../../../../common';
18-
import { i18n } from '@osd/i18n';
1918
import { buildHashUrl } from './url-builder';
2019
import { ROUTE_MAP } from '../app-router';
2120

@@ -39,7 +38,7 @@ export function getBreadcrumbs(
3938
resourceType?: ResourceType,
4039
pageTitle?: string,
4140
subAction?: string,
42-
count?: number,
41+
count?: number
4342
): EuiBreadcrumb[] {
4443
const breadcrumbs: EuiBreadcrumb[] = includeSecurityBase
4544
? [
@@ -58,7 +57,9 @@ export function getBreadcrumbs(
5857
});
5958
} else {
6059
breadcrumbs.push({
61-
text: count ? `${ROUTE_MAP[resourceType].displayNameWithoutSecurityBase} (${count})` : ROUTE_MAP[resourceType].displayNameWithoutSecurityBase,
60+
text: count
61+
? `${ROUTE_MAP[resourceType].displayNameWithoutSecurityBase} (${count})`
62+
: ROUTE_MAP[resourceType].displayNameWithoutSecurityBase,
6263
href: buildHashUrl(resourceType),
6364
});
6465
}

0 commit comments

Comments
 (0)