Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,6 @@
"react-dom": "16.8.6",
"react-helmet": "^5.2.1",
"react-jsonschema-form": "^1.0.4",
"react-lightweight-tooltip": "1.x",
"react-linkify": "^0.2.2",
"react-measure": "^2.2.6",
"react-modal": "3.x",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import * as React from 'react';
import { VictoryStack, VictoryBar } from 'victory';
import { Tooltip } from '@console/internal/components/utils/tooltip';
import { Tooltip } from '@patternfly/react-core';
import {
getTaskStatus,
runStatus,
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import * as React from 'react';
import ProgressiveListFooter from './ProgressiveListFooter';
import ProgressiveListItem from './ProgressiveListItem';
import './ProgressiveList.scss';

export interface ProgressiveListProps {
visibleItems: string[];
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import * as React from 'react';
import { Button } from '@patternfly/react-core';

export interface ProgressiveListFooterProps {
items: string[];
Expand Down Expand Up @@ -29,13 +30,9 @@ const ProgressiveListFooter: React.FC<ProgressiveListFooterProps> = ({
return (
<React.Fragment key={opt}>
{preText}
<button
className="btn btn-link odc-progressive-list__button"
type="button"
onClick={() => onShowItem(opt)}
>
<Button variant="link" isInline onClick={() => onShowItem(opt)}>
{opt}
</button>
</Button>
{postText}
</React.Fragment>
);
Expand Down
52 changes: 0 additions & 52 deletions frontend/public/components/utils/tooltip.tsx

This file was deleted.

4 changes: 0 additions & 4 deletions frontend/yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -10239,10 +10239,6 @@ react-lifecycles-compat@^3.0.4:
version "3.0.4"
resolved "https://registry.yarnpkg.com/react-lifecycles-compat/-/react-lifecycles-compat-3.0.4.tgz#4f1a273afdfc8f3488a8c516bfda78f872352362"

[email protected]:
version "1.0.0"
resolved "https://registry.yarnpkg.com/react-lightweight-tooltip/-/react-lightweight-tooltip-1.0.0.tgz#1fb96831b88de21a4d73d02148aae3d8d0aea9bc"

react-linkify@^0.2.2:
version "0.2.2"
resolved "https://registry.yarnpkg.com/react-linkify/-/react-linkify-0.2.2.tgz#55b99b1cc7244446a0f9bdebbe13b2c30f789e65"
Expand Down