Fix whitespace lints

Signed-off-by: Robin Townsend <robin@robin.town>
pull/21833/head
Robin Townsend 2021-06-01 17:37:31 -04:00
parent 56714525f2
commit b032422c6a
1 changed files with 3 additions and 3 deletions

View File

@ -184,13 +184,13 @@ const ForwardDialog: React.FC<IProps> = ({ matrixClient: cli, event, permalinkCr
const previewLayout = SettingsStore.getValue("layout");
return <BaseDialog
title={ _t("Forward message") }
title={_t("Forward message")}
className="mx_ForwardDialog"
contentId="mx_ForwardList"
onFinished={onFinished}
fixedWidth={false}
>
<h3>{ _t("Message preview") }</h3>
<h3>{_t("Message preview")}</h3>
<div className={classnames("mx_ForwardDialog_preview", {
"mx_IRCLayout": previewLayout == Layout.IRC,
"mx_GroupLayout": previewLayout == Layout.Group,
@ -206,7 +206,7 @@ const ForwardDialog: React.FC<IProps> = ({ matrixClient: cli, event, permalinkCr
<div className="mx_ForwardList">
<SearchBox
className="mx_textinput_icon mx_textinput_search"
placeholder={ _t("Search for rooms or people") }
placeholder={_t("Search for rooms or people")}
onSearch={setQuery}
autoComplete={true}
autoFocus={true}