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

cleanup

parent 38660190
Branches
Tags
No related merge requests found
......@@ -114,11 +114,10 @@ export const getTableItem = (state, index = 1) => createSelector(
export const getComparisonForField = createSelector
// see if xrays are enabled. unfortunately enabled equals null so its enabled if its not false
// see if xrays are enabled. unfortunately enabled can equal null so its enabled if its not false
export const getXrayEnabled = state => {
console.log('state!!!', state)
const enabled = state.settings.values['enable_xrays']
if(enabled == null || enabled == true) {
if(enabled == null || enabled === true) {
return true
}
return false
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment