Skip to content

Commit

Permalink
update dialogtitle inside in renamefolder
Browse files Browse the repository at this point in the history
  • Loading branch information
glespinosa committed Feb 20, 2024
1 parent f9eb8e5 commit ee0fb1a
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/apps/media/src/app/components/RenameFolderDialog.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ import {
DialogTitle,
InputLabel,
TextField,
Typography,
} from "@mui/material";
import { mediaManagerApi } from "../../../../../shell/services/mediaManager";

Expand Down Expand Up @@ -57,7 +58,11 @@ export const RenameFolderDialog = ({

return (
<Dialog open={open} onClose={onClose} fullWidth maxWidth={"xs"}>
<DialogTitle fontWeight={700}>Rename Folder</DialogTitle>
<DialogTitle>
<Typography variant="h5" fontWeight="700">
Rename Folder
</Typography>
</DialogTitle>
<DialogContent>
<InputLabel>New Folder Name</InputLabel>
<TextField
Expand Down

0 comments on commit ee0fb1a

Please sign in to comment.