diff --git a/ui/v2.5/config/webpack.dev.js b/ui/v2.5/config/webpack.dev.js index 426f19cdd..030cd8153 100644 --- a/ui/v2.5/config/webpack.dev.js +++ b/ui/v2.5/config/webpack.dev.js @@ -31,8 +31,6 @@ module.exports = merge(commonConfig, { compress: true, host: '0.0.0.0', hot: true, // enable HMR on the server host: '0.0.0.0', - transportMode: 'ws', - injectClient: false, port: process.env.PORT, historyApiFallback: true, stats: { diff --git a/ui/v2.5/src/components/Galleries/Gallery.tsx b/ui/v2.5/src/components/Galleries/Gallery.tsx index 51375fb1d..e6cc10f24 100644 --- a/ui/v2.5/src/components/Galleries/Gallery.tsx +++ b/ui/v2.5/src/components/Galleries/Gallery.tsx @@ -1,7 +1,7 @@ import React from "react"; -import { Spinner } from "react-bootstrap"; import { useParams } from "react-router-dom"; import { StashService } from "src/core/StashService"; +import { LoadingIndicator } from 'src/components/Shared'; import { GalleryViewer } from "./GalleryViewer"; export const Gallery: React.FC = () => { @@ -11,7 +11,7 @@ export const Gallery: React.FC = () => { const gallery = data?.findGallery; if (loading || !gallery) - return ; + return ; if (error) return
{error.message}
; return ( diff --git a/ui/v2.5/src/components/MainNavbar.tsx b/ui/v2.5/src/components/MainNavbar.tsx index 59ef2839a..d29319ec4 100644 --- a/ui/v2.5/src/components/MainNavbar.tsx +++ b/ui/v2.5/src/components/MainNavbar.tsx @@ -67,7 +67,7 @@ export const MainNavbar: React.FC = () => { - +