Skip to content

Commit 4940606

Browse files
committed
fix: #214 - widened profile form
1 parent 6ffd988 commit 4940606

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

objectified-ui/src/app/components/Dashboard.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ import MenuButton from "@/app/components/common/MenuButton";
3333
import {putUser} from "@/app/services/user";
3434
import {errorDialog} from "@/app/components/common/ConfirmDialog";
3535

36-
const VERSION = '0.1.10';
36+
const VERSION = '0.1.11';
3737

3838
const NavItems = [
3939
{
@@ -131,7 +131,7 @@ const Dashboard = ({ children }: { children?: React.ReactNode }) => {
131131
</DialogContent>
132132
</Dialog>
133133

134-
<Dialog open={profileShowing} fullWidth maxWidth={'sm'}>
134+
<Dialog open={profileShowing} fullWidth maxWidth={'md'}>
135135
<DialogContent>
136136
<ProfileForm onClose={() => {
137137
setProfileShowing(false);

objectified-ui/src/app/whats-new/page.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ const WhatsNew = () => {
2626
<li> <Link href={`${baseGithub}/133`} target={'_none'}>#133</Link> Added Protobuf schema generation in Class inspection.</li>
2727
<li> <Link href={`${baseGithub}/189`} target={'_none'}>#189</Link> Ability to change passwords is in place.</li>
2828
<li> <Link href={`${baseGithub}/188`} target={'_none'}>#188</Link> Last login recording.</li>
29+
<li> <Link href={`${baseGithub}/214`} target={'_none'}>#214</Link> Increased size of profile form on the app.</li>
2930
</div>
3031

3132
<p style={{ padding: '4px' }}/>

0 commit comments

Comments
 (0)