fix: Remove unnecessary string interpolations

This commit is contained in:
Jay Sitter 2023-06-25 19:36:19 -04:00
parent 883afea0c5
commit d0f6fdbe4a
7 changed files with 11 additions and 11 deletions

View file

@ -1235,12 +1235,12 @@ export class PostListing extends Component<PostListingProps, PostListingState> {
value={this.state.banReason}
onInput={linkEvent(this, this.handleModBanReasonChange)}
/>
<label className="col-form-label" htmlFor={`mod-ban-expires`}>
<label className="col-form-label" htmlFor="mod-ban-expires">
{I18NextService.i18n.t("expires")}
</label>
<input
type="number"
id={`mod-ban-expires`}
id="mod-ban-expires"
className="form-control me-2"
placeholder={I18NextService.i18n.t("number_of_days")}
value={this.state.banExpireDays}