From 2a96abdd4a0f5d568fb9778cb8ef8ba47938fdec Mon Sep 17 00:00:00 2001 From: ibuler Date: Thu, 20 Jul 2023 16:25:11 +0800 Subject: [PATCH] =?UTF-8?q?perf:=20=E5=8E=BB=E6=8E=89=20debug=20msg?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../FormFields/JSONManyToManySelect/ValueFormatter.vue | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/components/FormFields/JSONManyToManySelect/ValueFormatter.vue b/src/components/FormFields/JSONManyToManySelect/ValueFormatter.vue index bd99d7b42..fcbb2e835 100644 --- a/src/components/FormFields/JSONManyToManySelect/ValueFormatter.vue +++ b/src/components/FormFields/JSONManyToManySelect/ValueFormatter.vue @@ -73,10 +73,7 @@ export default { } } else if (this.attr.type === 'select') { const options = this.attr.el.options || [] - console.log('Options: ', options) - console.log('Cell value: ', this.cellValue) const items = options.filter(item => this.cellValue.includes(item.value)) - console.log('Items: ', items) this.value = items.map(item => item.label).join(', ') } else if (['in', 'ip_in'].includes(match)) { this.value = this.cellValue.join(', ')