Skip to content
Snippets Groups Projects
Unverified Commit c950e502 authored by Ryan Laurie's avatar Ryan Laurie Committed by GitHub
Browse files

remove explicit z-index on DateOperatorSelector (#21146)

parent 86d2c72a
No related branches found
No related tags found
No related merge requests found
......@@ -2,7 +2,6 @@
import React, { Component } from "react";
import _ from "underscore";
import cx from "classnames";
import Select, { Option } from "metabase/core/components/Select";
......@@ -11,7 +10,7 @@ export default class DateOperatorSelector extends Component {
const { className, operator, operators, onOperatorChange } = this.props;
return (
<div className={cx(className, "relative z3")} style={{ minWidth: 100 }}>
<div className={className} style={{ minWidth: 100 }}>
<Select
value={_.findWhere(operators, { name: operator })}
onChange={e => onOperatorChange(e.target.value)}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment