) => {
@@ -143,7 +143,7 @@ export default function ConvertFileDialog({
Output File or Folder Name
) => {
@@ -178,7 +178,11 @@ export default function ConvertFileDialog({
type="submit"
>
{createTicketMutation.isPending || allTicketsQuery.isFetching ? (
-
+
) : (
'Submit'
)}
diff --git a/frontend/src/components/ui/widgets/Loaders.tsx b/frontend/src/components/ui/widgets/Loaders.tsx
index 18bf082d..8f22f1af 100644
--- a/frontend/src/components/ui/widgets/Loaders.tsx
+++ b/frontend/src/components/ui/widgets/Loaders.tsx
@@ -2,10 +2,12 @@ import { Typography } from '@material-tailwind/react';
function Spinner({
customClasses,
- text
+ text,
+ textClasses
}: {
readonly customClasses?: string;
readonly text?: string;
+ readonly textClasses?: string;
}) {
return (
@@ -13,7 +15,7 @@ function Spinner({
className={`w-5 h-5 border-4 border-surface-foreground border-t-transparent rounded-full animate-spin ${customClasses}`}
title="Loading spinner"
/>
- {text}
+ {text}
);
}