diff --git a/web/src/changelog.json b/web/src/changelog.json index f835ecee..5609704a 100644 --- a/web/src/changelog.json +++ b/web/src/changelog.json @@ -1,33 +1,16 @@ { - "Go - General": [ + "Interface - Code Editor": [ { - "issueId": 324, - "url": "issues/324", - "description": "Add workaround for Playground API unit tests bug" + "issueId": 362, + "url": "pull/362", + "description": "Support package paths autocomplete in import section" } ], "Go - WebAssembly": [ { - "issueId": 348, - "url": "/issues/348", - "description": "Disable Yaegi Go interpreter" - } - ], - "Interface - General": [ - { - "issueId": 354, - "url": "pull/354", - "description": "Add file deletion confirm dialog" - }, - { - "issueId": 347, - "url": "pull/347", - "description": "Add DarkReader extension support" - }, - { - "issueId": 346, - "url": "pull/346", - "description": "Disable broken service worker" + "issueId": 359, + "url": "pull/359", + "description": "Add unit tests support in WebAssembly environment" } ] } diff --git a/web/src/components/modals/AboutModal/ChangeLog/ChangeLog.css b/web/src/components/modals/AboutModal/ChangeLog/ChangeLog.css deleted file mode 100644 index 8e023592..00000000 --- a/web/src/components/modals/AboutModal/ChangeLog/ChangeLog.css +++ /dev/null @@ -1,3 +0,0 @@ -.ChangeLog .ChangeLog__issue-url:after { - content: " - "; -} diff --git a/web/src/components/modals/AboutModal/ChangeLog/ChangeLog.tsx b/web/src/components/modals/AboutModal/ChangeLog/ChangeLog.tsx index 2e12163d..18d3ea48 100644 --- a/web/src/components/modals/AboutModal/ChangeLog/ChangeLog.tsx +++ b/web/src/components/modals/AboutModal/ChangeLog/ChangeLog.tsx @@ -5,8 +5,6 @@ import { Link } from '@fluentui/react/lib/Link' import changelog from '~/changelog.json' import environment from '~/environment' -import './ChangeLog.css' - interface Props extends Pick, 'className' | 'style'> {} export const ChangeLog: React.FC = ({ className, ...props }) => { @@ -18,10 +16,10 @@ export const ChangeLog: React.FC = ({ className, ...props }) => {
    {items.map(({ issueId, url, description }) => (
  • - + #{issueId} - {description} + - {description}
  • ))}