From ee653a97c52c0f9e3237f8088b78d98339ecb940 Mon Sep 17 00:00:00 2001 From: Josh Maxwell Date: Sat, 22 Oct 2022 22:32:39 -0600 Subject: [PATCH] Using GitHub Integration Host information in place of static GitHub hostname Signed-off-by: Josh Maxwell --- .../src/components/GithubIssues/IssueCard/IssueCard.tsx | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/plugins/github-issues/src/components/GithubIssues/IssueCard/IssueCard.tsx b/plugins/github-issues/src/components/GithubIssues/IssueCard/IssueCard.tsx index bbc4995796..2337c8b4ac 100644 --- a/plugins/github-issues/src/components/GithubIssues/IssueCard/IssueCard.tsx +++ b/plugins/github-issues/src/components/GithubIssues/IssueCard/IssueCard.tsx @@ -14,14 +14,13 @@ * limitations under the License. */ -import React from 'react'; -import { DateTime } from 'luxon'; - -import { Box, Paper, Typography, CardActionArea } from '@material-ui/core'; import { Link } from '@backstage/core-components'; +import { Box, CardActionArea, Paper, Typography } from '@material-ui/core'; +import Divider from '@material-ui/core/Divider'; +import { DateTime } from 'luxon'; +import React from 'react'; import { Assignees } from './Assignees'; import { CommentsCount } from './CommentsCount'; -import Divider from '@material-ui/core/Divider'; type IssueCardProps = { title: string;