Issue #3305706 by znerol, SandeepSingh199, ivnish, smustgrave, Spokje, økse, ranjith_kumar_k_u, coffeemakr, DavorHorvacki: Uncaught TypeError: this.$pluginSelect.find(...)[0] is undefined
parent
6c8431c0ec
commit
d6689fcbdb
|
@ -365,10 +365,14 @@
|
||||||
// disabled previously. Pseudo-fields do not have default formatters,
|
// disabled previously. Pseudo-fields do not have default formatters,
|
||||||
// we just return to 'visible' for those.
|
// we just return to 'visible' for those.
|
||||||
if (this.region === 'hidden') {
|
if (this.region === 'hidden') {
|
||||||
|
const pluginSelect =
|
||||||
|
typeof this.$pluginSelect.find('option')[0] !== 'undefined'
|
||||||
|
? this.$pluginSelect.find('option')[0].value
|
||||||
|
: undefined;
|
||||||
const value =
|
const value =
|
||||||
typeof this.defaultPlugin !== 'undefined'
|
typeof this.defaultPlugin !== 'undefined'
|
||||||
? this.defaultPlugin
|
? this.defaultPlugin
|
||||||
: this.$pluginSelect.find('option')[0].value;
|
: pluginSelect;
|
||||||
|
|
||||||
if (typeof value !== 'undefined') {
|
if (typeof value !== 'undefined') {
|
||||||
if (this.$pluginSelect.length) {
|
if (this.$pluginSelect.length) {
|
||||||
|
|
Loading…
Reference in New Issue