This commit is contained in:
Infinite
2020-01-28 19:35:09 +01:00
parent 3fa3f61d93
commit ac3d03715f
58 changed files with 1533 additions and 1483 deletions

View File

@@ -1,5 +1,6 @@
import React, { useEffect, useState } from "react";
import { Button, InputGroup, Form, Modal, Spinner } from "react-bootstrap";
import { Button, InputGroup, Form, Modal } from "react-bootstrap";
import { LoadingIndicator } from 'src/components/Shared';
import { StashService } from "src/core/StashService";
interface IProps {
@@ -55,7 +56,7 @@ export const FolderSelect: React.FC<IProps> = (props: IProps) => {
/>
<InputGroup.Append>
{!data || !data.directories || loading ? (
<Spinner animation="border" variant="light" />
<LoadingIndicator inline />
) : (
""
)}