Skip to content

Commit

Permalink
Arreglados errores debido al merge.
Browse files Browse the repository at this point in the history
  • Loading branch information
UO288559 committed Apr 16, 2024
1 parent f09f654 commit ab209bb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions webapp/src/components/fragments/NavigationBar.js
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ const NavigationBar = () => {
<MenuItem onClick={showHome}>Inicio</MenuItem>
<MenuItem onClick={showGameHistory}>Historial de Juegos</MenuItem>
<MenuItem onClick={showRanking}>Ranking</MenuItem>
<MenuItem>Perfil</MenuItem>
<MenuItem onClick={showPerfil}>Perfil</MenuItem>
<MenuItem onClick={showLogout}>Cerrar Sesión</MenuItem>
</Menu>
<Hidden smDown>
Expand All @@ -105,8 +105,8 @@ const NavigationBar = () => {
</Tooltip>
</Grid>
<Grid container justifyContent="flex-end">
<Tooltip title="Cerrar sesión">
<Button variant="contained" color="inherit" style={{ background: '#9A77B0', border: 'none', padding: 0, width: '50px', marginRight: '10px' }}>
<Tooltip title="Perfil">
<Button variant="contained" color="inherit" style={{ background: '#9A77B0', border: 'none', padding: 0, width: '50px', marginRight: '10px' }} onClick={showPerfil}>
<img src={require('../images/iconUser.png')} style={{ width: '50px', height: '50px' }} alt="Imagen usuario"/>
</Button>
</Tooltip>
Expand Down

0 comments on commit ab209bb

Please sign in to comment.