Fix the appearance of comments

This commit is contained in:
Jonathan Bourdon
2024-07-22 00:30:22 -04:00
parent d392730c98
commit e376a0d571
7 changed files with 40 additions and 30 deletions

View File

@@ -7,6 +7,7 @@ export default class MyUserModel
{
id = "";
creatorAlias = "";
alias = null;
firstName = "";
lastName = "";
userName = "";

View File

@@ -1,8 +1,8 @@
export default class StoredDataUrlsModel
{
bannerPictureUrl = "";
profilePictureUrl = "";
websiteIconUrl = "";
bannerPictureUrl = null;
profilePictureUrl = null;
websiteIconUrl = null;
static createFromApiResult(apiResult){
return Object.assign(new StoredDataUrlsModel(), apiResult)