Fix == typo

This commit is contained in:
Danila Fedorin 2021-07-16 13:49:33 -07:00
parent 7cfdd4f663
commit da48ddec83

View File

@ -37,7 +37,7 @@ export class TextTile extends BaseTextTile {
}
_getBody() {
if (this._getBodyFormat() == BodyFormat.Html) {
if (this._getBodyFormat() === BodyFormat.Html) {
return this._getFormattedBody();
} else {
return this._getPlainBody();