remote type clear..

This commit is contained in:
Cüneyt Şentürk
2020-11-10 21:20:50 +03:00
parent 870db531fe
commit 8ed62127d1
20 changed files with 29 additions and 43 deletions

View File

@ -124,11 +124,6 @@
default: null,
description: "Selectbox remote action path"
},
remoteType: {
type: String,
default: 'invoice',
description: "Ger remote item type."
},
},
data() {

View File

@ -353,11 +353,6 @@ export default {
default: null,
description: "Selectbox remote action path"
},
remoteType: {
type: String,
default: 'invoice',
description: "Ger remote item type."
},
currencyCode: {
type: String,
default: 'USD',
@ -449,7 +444,7 @@ export default {
this.sort_options.push({
index: index,
key: option.id,
value: (option.title) ? option.title : (option.display_name) ? option.display_name : option.name
value: (option.title) ? option.title : (option.display_name) ? option.display_name : option.name
});
}, this);
}
@ -523,7 +518,7 @@ export default {
data.forEach(function (option) {
this.sort_options.push({
key: option.id.toString(),
value: (option.title) ? option.title : (option.display_name) ? option.display_name : option.name
value: (option.title) ? option.title : (option.display_name) ? option.display_name : option.name
});
}, this);
} else {