diff --git a/src/components/status/status.js b/src/components/status/status.js index ee0da4dc7..5ccb4a03d 100644 --- a/src/components/status/status.js +++ b/src/components/status/status.js @@ -69,6 +69,9 @@ const controlledOrUncontrolledGetters = list => list.reduce((res, name) => { const controlledName = `controlled${camelized}` const uncontrolledName = `uncontrolled${camelized}` res[name] = function () { + debugger + console.log(this) + console.log(Object.getOwnPropertyDescriptor(this, toggle)) return (Object.getOwnPropertyDescriptor(this, toggle) && this[toggle]) ? this[controlledName] : this[uncontrolledName] } return res