Skip to content

Commit

Permalink
fixing lint errors
Browse files Browse the repository at this point in the history
Signed-off-by: Adam Tackett <[email protected]>
  • Loading branch information
Adam Tackett committed Aug 26, 2024
1 parent 6e17de7 commit f1d0f86
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ export function AppTable(props: AppTableProps) {
truncateText: true,
render: (value, record) => (
<EuiLink data-test-subj={`${record.name}ApplicationLink`} href={`#/${record.id}`}>
{_.truncate(record.name, { length: 100 })}
{truncate(record.name, { length: 100 })}
</EuiLink>
),
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ import {
import DSLService from 'public/services/requests/dsl';
import React, { ReactChild, useEffect, useState } from 'react';
import PPLService from 'public/services/requests/ppl';
import { last } from 'lodash';
import { AppAnalyticsComponentDeps } from '../home';
import { TraceConfig } from './config_components/trace_config';
import { ServiceConfig } from './config_components/service_config';
Expand Down

0 comments on commit f1d0f86

Please sign in to comment.