Skip to content

Commit 136afe1

Browse files
authored
Merge pull request #1307 from valadas/richtext-init
Fixed an issue that prevented proper initialization of dnn-richtext
2 parents 6bbb68f + 0e804ec commit 136afe1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/stencil-library/src/utilities/stringUtilities.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ export function getReadableFileSizeString (fileSizeInBytes: number) : string {
1515

1616
/** Takes an html encoded string and converts it to actual decoded html. */
1717
export function decodeHtml(html: string) : string {
18-
if (html != undefined){
18+
if (html == undefined){
1919
return '';
2020
}
2121

0 commit comments

Comments
 (0)