Compare commits

...

2 commits

Author SHA1 Message Date
DESKTOP-1R2VSQH\Lenovo ThinkPad E490
74752361be fix: avatar : string
All checks were successful
Build & Deploy on Dev / build (push) Successful in 54s
2026-01-30 18:22:07 +07:00
DESKTOP-1R2VSQH\Lenovo ThinkPad E490
89a34f38ef fix avatar? 2026-01-30 18:20:13 +07:00
2 changed files with 4 additions and 4 deletions

View file

@ -165,8 +165,8 @@ export class ProfileAvatarController extends Controller {
where: { id: _record.profileId },
});
if (profile) {
profile.avatar = null;
profile.avatarName = null;
profile.avatar = "";
profile.avatarName = "";
await this.profileRepository.save(profile, { data: req });
}
}

View file

@ -58,14 +58,14 @@ export class Profile extends EntityBase {
comment: "รูปถ่าย",
default: null,
})
avatar: string | null;
avatar: string ;
@Column({
nullable: true,
comment: "รูปถ่าย",
default: null,
})
avatarName: string | null;
avatarName: string;
@Column({
nullable: true,