diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index d731db0..bffc869 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -68,18 +68,12 @@ jobs: dependencies-cache-enabled: true configuration-cache-enabled: true - - - name: Create repo artifacts - run: | - cd master - ./.github/scripts/create-repo.sh - - name: Upload Release uses: xresloader/upload-to-github-release@master env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: - file: "master/repo/*" + file: "master/server/build/*.jar;master/server/build/*-win32.zip" tags: true draft: true verbose: true diff --git a/webUI/react/src/components/MangaDetails.tsx b/webUI/react/src/components/MangaDetails.tsx index 867b9fa..ec43702 100644 --- a/webUI/react/src/components/MangaDetails.tsx +++ b/webUI/react/src/components/MangaDetails.tsx @@ -135,6 +135,9 @@ export default function MangaDetails(props: IProps) { const { setAction } = useContext(NavbarContext); const { manga } = props; + if (manga.genre == null) { + manga.genre = ''; + } const [inLibrary, setInLibrary] = useState( manga.inLibrary ? 'In Library' : 'Add To Library', );