diff --git a/_locales/en/messages.json b/_locales/en/messages.json index a7e6d2766..6d93306bb 100644 --- a/_locales/en/messages.json +++ b/_locales/en/messages.json @@ -2206,11 +2206,13 @@ }, "editGroupNameOrPicture": { "message": "Edit group name or picture", - "description": "Button action that the user can click to edit a group name (open)" + "description": + "Button action that the user can click to edit a group name (open)" }, "editGroupName": { "message": "Edit group name", - "description": "Button action that the user can click to edit a group name (closed)" + "description": + "Button action that the user can click to edit a group name (closed)" }, "createGroupDialogTitle": { "message": "Creating a Closed Group", diff --git a/js/modules/loki_app_dot_net_api.js b/js/modules/loki_app_dot_net_api.js index 75b2ebb43..ff63a3980 100644 --- a/js/modules/loki_app_dot_net_api.js +++ b/js/modules/loki_app_dot_net_api.js @@ -1290,9 +1290,13 @@ class LokiPublicChannelAPI { this.conversation.setSubscriberCount(data.counts.subscribers); } - await window.Signal.Data.updateConversation(this.conversation.id, this.conversation.attributes, { - Conversation: Whisper.Conversation, - }); + await window.Signal.Data.updateConversation( + this.conversation.id, + this.conversation.attributes, + { + Conversation: Whisper.Conversation, + } + ); await this.pollForChannelOnce(); } diff --git a/ts/components/conversation/UpdateGroupNameDialog.tsx b/ts/components/conversation/UpdateGroupNameDialog.tsx index c6e9aa8f2..facdef321 100644 --- a/ts/components/conversation/UpdateGroupNameDialog.tsx +++ b/ts/components/conversation/UpdateGroupNameDialog.tsx @@ -197,7 +197,7 @@ export class UpdateGroupNameDialog extends React.Component { onChange={this.onFileSelected} /> - + ); } diff --git a/ts/components/session/SessionGroupSettings.tsx b/ts/components/session/SessionGroupSettings.tsx index c5f50bef7..123f17d23 100644 --- a/ts/components/session/SessionGroupSettings.tsx +++ b/ts/components/session/SessionGroupSettings.tsx @@ -256,7 +256,9 @@ export class SessionGroupSettings extends React.Component { role="button" onClick={this.props.onUpdateGroupName} > - {isPublic ? window.i18n('editGroupNameOrPicture') : window.i18n('editGroupName')} + {isPublic + ? window.i18n('editGroupNameOrPicture') + : window.i18n('editGroupName')} )} {showUpdateGroupMembersButton && (