Skip to content
Snippets Groups Projects
Commit c021d2ad authored by lfr20's avatar lfr20
Browse files

Added circular progress to the filter

parent 694b6273
No related branches found
No related tags found
4 merge requests!57Merge of develop into master,!56Fixed buttons reportar, seguir, compartilhar, guardar and entrar (in comments...,!39Update admin system,!32Homologa
......@@ -10,6 +10,9 @@ import SearchEPTiposRec from "./SearchEPTiposRec";
import SearchEPEtapasEns from "./SesrchEPEtapasEns";
import SearchEPIdiomas from "./SearchEPIdiomas";
import { TextField } from "@material-ui/core";
import Grid from '@material-ui/core/Grid';
import CircularProgress from '@material-ui/core/CircularProgress';
const ExpansionPanel = withStyles({
root: {
border: "1px solid rgba(0, 0, 0, .125)",
......@@ -88,15 +91,28 @@ export default function SearchExpansionPanel(props) {
aria-controls="panel1d-content"
id="panel1d-header"
>
<Typography
style={{
fontSize: "18px",
textTransform: "uppercase",
fontWeight: "500"
}}
<Grid
container
direction="row"
justify="space-between"
>
Filtros
</Typography>
<Grid item>
<Typography
style={{
fontSize: "18px",
textTransform: "uppercase",
fontWeight: "500"
}}
>
Filtros
</Typography>
</Grid>
<Grid item>
{
props.onFiltering ? <CircularProgress size={24} color="secondary" /> : null
}
</Grid>
</Grid>
</ExpansionPanelSummary>
</ExpansionPanel>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment