Skip to content

Commit

Permalink
tested 10.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
lukejpreston committed Jun 23, 2023
1 parent 449f1a2 commit 7c190c9
Show file tree
Hide file tree
Showing 7 changed files with 53 additions and 124 deletions.
6 changes: 3 additions & 3 deletions index.html

Large diffs are not rendered by default.

58 changes: 45 additions & 13 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,8 @@
"fuzzy": "^0.1.3",
"gh-pages": "^5.0.0",
"jest-junit": "^16.0.0",
"linkify-html": "^4.1.1",
"linkifyjs": "^4.1.1",
"localforage": "^1.10.0",
"match-sorter": "^6.3.1",
"query-string": "^8.1.0",
Expand Down
5 changes: 3 additions & 2 deletions src/app/suite.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@ import React from 'react'
import X from 'react-render-if-visible'
import Toggle from './toggle.js'
import SuiteCount from './suite-count.js'
import Y, { linkify } from 'react-linkify'
import Y from 'react-linkify'
import linkify from 'linkify-html'
const Linkify = Y.default

const RenderIfVisible = X.default
Expand Down Expand Up @@ -64,7 +65,7 @@ const RawContent = ({ messages }) => <div className='raw-content'>
</div>

const PrettyContent = ({ messages }) => <div className='pretty-content'>
{messages.map((message, index) => <Linkify key={`test-message-${index}`}><div dangerouslySetInnerHTML={{ __html: message }} /></Linkify>)}
{messages.map((message, index) => <Linkify key={`test-message-${index}`}><div dangerouslySetInnerHTML={{ __html: linkify(message) }} /></Linkify>)}
</div>

const PrettyIcon = () => <span className='icon'>
Expand Down
3 changes: 0 additions & 3 deletions src/cli/static/js/main.29028dd7.js

This file was deleted.

102 changes: 0 additions & 102 deletions src/cli/static/js/main.29028dd7.js.LICENSE.txt

This file was deleted.

1 change: 0 additions & 1 deletion src/cli/static/js/main.29028dd7.js.map

This file was deleted.

0 comments on commit 7c190c9

Please sign in to comment.