diff --git a/ghost/admin/app/components/gh-select-native.js b/ghost/admin/app/components/gh-select-native.js index 0c5d49e958..64e1af11d6 100644 --- a/ghost/admin/app/components/gh-select-native.js +++ b/ghost/admin/app/components/gh-select-native.js @@ -21,7 +21,9 @@ export default Component.extend({ actions: { change() { - let [selectEl] = this.$('select'); + // jscs:disable requireArrayDestructuring + let selectEl = this.$('select')[0]; + // jscs:enable requireArrayDestructuring let {selectedIndex} = selectEl; // decrement index by 1 if we have a prompt