Skip to content

Commit

Permalink
clean
Browse files Browse the repository at this point in the history
  • Loading branch information
makotech222 committed Jun 18, 2022
1 parent 8495c4c commit 8abad63
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/shared/components/modlog.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -475,7 +475,7 @@ export class Modlog extends Component<any, ModlogState> {
onChange={linkEvent(this, this.handleFilterActionChange)}
className="custom-select col-4 mb-2"
aria-label="action">
<option disabled aria-hidden="true">Action</option>
<option disabled aria-hidden="true">{i18n.t("filter_by_action")}</option>
<option value={ModlogActionType.All}>{i18n.t("all")}</option>
<option value={ModlogActionType.ModRemovePost}>Removing Posts</option>
<option value={ModlogActionType.ModLockPost}>Locking Posts</option>
Expand All @@ -491,13 +491,13 @@ export class Modlog extends Component<any, ModlogState> {
{!this.state.site_view.site.hide_modlog_mod_names && <select
id="filter-mod"
value={this.state.filter_mod}>
<option>Filter By Mod</option>
<option>{i18n.t("filter_by_mod")}</option>
</select>
}
<select
id="filter-user"
value={this.state.filter_user}>
<option>Filter By User</option>
<option>{i18n.t("filter_by_user")}</option>
</select>
</form>
<div className="table-responsive">
Expand Down

0 comments on commit 8abad63

Please sign in to comment.