Skip to content

Commit

Permalink
Fixed email maanger (fix #1261)
Browse files Browse the repository at this point in the history
  • Loading branch information
tananaev committed Aug 9, 2024
1 parent b77092b commit ba4dc6a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/settings/UserPage.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ const UserPage = () => {
value={item.email || ''}
onChange={(e) => setItem({ ...item, email: e.target.value })}
label={t('userEmail')}
disabled={fixedEmail}
disabled={fixedEmail && item.id === currentUser.id}
/>
{!openIdForced && (
<TextField
Expand Down

0 comments on commit ba4dc6a

Please sign in to comment.