Skip to content

Commit

Permalink
fix(api): cannot delete post
Browse files Browse the repository at this point in the history
  • Loading branch information
GZTimeWalker committed Sep 19, 2023
1 parent c880ca2 commit 0cb492b
Show file tree
Hide file tree
Showing 7 changed files with 157 additions and 151 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
VITE_APP_GIT_NAME: ${{ github.ref_name }}

- name: Docker setup QEMU
uses: docker/setup-qemu-action@v2
uses: docker/setup-qemu-action@v3

- name: Docker setup Buildx
uses: docker/setup-buildx-action@v2
Expand Down
6 changes: 3 additions & 3 deletions src/GZCTF.Test/GZCTF.Test.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@
<PackageReference Include="Microsoft.AspNetCore.Mvc.Testing" Version="7.0.11" />
<PackageReference Include="Microsoft.AspNetCore.TestHost" Version="7.0.11" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.7.2" />
<PackageReference Include="xunit" Version="2.5.0" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.0">
<PackageReference Include="xunit" Version="2.5.1" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.1">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="xunit.runner.console" Version="2.5.0">
<PackageReference Include="xunit.runner.console" Version="2.5.1">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
Expand Down
10 changes: 5 additions & 5 deletions src/GZCTF/ClientApp/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"genapi": "swagger-typescript-api -p template/swagger.json -t template -o src --module-name-first-tag --sort-routes"
},
"dependencies": {
"@babel/core": "^7.22.19",
"@babel/core": "^7.22.20",
"@emotion/react": "^11.11.1",
"@mantine/carousel": "^6.0.20",
"@mantine/core": "^6.0.20",
Expand All @@ -33,7 +33,7 @@
"embla-carousel-react": "^7.1.0",
"katex": "^0.16.8",
"lz-string": "^1.5.0",
"marked": "^9.0.1",
"marked": "^9.0.3",
"marked-highlight": "^2.0.6",
"pdfjs-dist": "3.6.172",
"prismjs": "^1.29.0",
Expand All @@ -53,10 +53,10 @@
"@types/katex": "^0.16.3",
"@types/node": "20.6.2",
"@types/prismjs": "^1.26.0",
"@types/react": "^18.2.21",
"@types/react": "^18.2.22",
"@types/react-dom": "^18.2.7",
"@typescript-eslint/eslint-plugin": "^6.7.0",
"@typescript-eslint/parser": "^6.7.0",
"@typescript-eslint/eslint-plugin": "^6.7.2",
"@typescript-eslint/parser": "^6.7.2",
"@vitejs/plugin-react": "^4.0.4",
"axios": "^1.5.0",
"babel-plugin-prismjs": "^2.1.0",
Expand Down
Loading

0 comments on commit 0cb492b

Please sign in to comment.