Skip to content
Snippets Groups Projects
Unverified Commit c4a27485 authored by Kyle Doherty's avatar Kyle Doherty
Browse files

highlight current max limit

parent f13e4653
No related branches found
No related tags found
No related merge requests found
......@@ -7,8 +7,14 @@ import Icon from 'metabase/components/Icon'
import COSTS from 'metabase/xray/costs'
const SettingsXrayForm = ({ settings, elements, updateSetting }) => {
const maxCost = Object.assign({}, ...elements.filter(e => e.key === 'xray-max-cost',))
let maxCost = Object.assign({}, ...elements.filter(e => e.key === 'xray-max-cost',))
const enabled = Object.assign({}, ...elements.filter(e => e.key === 'enable-xrays',))
// handle the current behavior of the default
if(maxCost.value == null) {
maxCost.value = 'extended'
}
return (
<div>
<div className="mx2">
......
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