Skip to content

Commit 71ce3d4

Browse files
committed
fixed samples list UI
1 parent cbc6549 commit 71ce3d4

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

client/src/SamplesPage.jsx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,11 @@ import {
1010
import {Link16Regular, Link20Regular} from '@fluentui/react-icons';
1111
import ReactMarkdown from 'react-markdown';
1212

13+
import styles from './assets/styles/SamplesPage.module.css';
14+
1315
import GitHash from './components/GitVersion';
1416
import PageTitle from './components/PageTitle';
1517

16-
import styles from './assets/styles/SamplesPage.module.css';
1718

1819
const SamplesPage = () => {
1920

@@ -47,7 +48,7 @@ const SamplesPage = () => {
4748
<CardHeader
4849
header={
4950
<div className={styles.resultCardHeader}>
50-
<Link href={result.url} target='blank'>{result.name} <Link20Regular /></Link>
51+
{result.name} <Link href={result.url} target='blank'> <Link20Regular /></Link>
5152
</div>
5253
}
5354
description={

client/src/SearchPage.jsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,9 @@ import {
2121
import { Alert12Filled, AlertOn16Filled, Note16Filled, Search24Regular, Warning12Filled, Warning16Color, Warning20Color } from '@fluentui/react-icons';
2222
import ReactMarkdown from 'react-markdown';
2323
import Cookies from 'js-cookie';
24+
2425
import styles from './assets/styles/SearchPage.module.css';
26+
2527
import GitHash from './components/GitVersion';
2628
import PageTitle from './components/PageTitle';
2729

0 commit comments

Comments
 (0)