File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -156,13 +156,13 @@ export class IssueModel<TItem extends Issue = Issue> extends Disposable {
156156 if ( issue . titleHTML && this . titleHTML !== issue . titleHTML ) {
157157 this . titleHTML = issue . titleHTML ;
158158 }
159+ if ( ( ! this . bodyHTML || ( issue . body !== this . body ) ) && this . bodyHTML !== issue . bodyHTML ) {
160+ this . bodyHTML = issue . bodyHTML ;
161+ }
159162 if ( this . body !== issue . body ) {
160163 changes . body = true ;
161164 this . body = issue . body ;
162165 }
163- if ( ( ! this . bodyHTML || ( issue . body !== this . body ) ) && this . bodyHTML !== issue . bodyHTML ) {
164- this . bodyHTML = issue . bodyHTML ;
165- }
166166 if ( this . milestone ?. id !== issue . milestone ?. id ) {
167167 changes . milestone = true ;
168168 this . milestone = issue . milestone ;
You can’t perform that action at this time.
0 commit comments