Skip to content

Commit 2d69628

Browse files
authored
Change = to ==
1 parent fdfad6f commit 2d69628

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/pluggableWidgets/rich-text-web/src/components/EditorWrapper.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ export default function EditorWrapper(props: EditorWrapperProps): ReactElement {
181181
</div>
182182
{enableStatusBar && (
183183
<div className="widget-rich-text-footer">
184-
{wordCount} word{wordCount = 1 ? "" : "s"}
184+
{wordCount} word{wordCount == 1 ? "" : "s"}
185185
</div>
186186
)}
187187
</div>

0 commit comments

Comments
 (0)