From 8ab814cb8b78cdeff58bf3a08c4c62dcd814107e Mon Sep 17 00:00:00 2001 From: Jan Prochazka Date: Thu, 12 Sep 2024 07:54:45 +0200 Subject: [PATCH] try to fix build --- .../src/frontend/drivers.js | 34 +++++++++---------- 1 file changed, 17 insertions(+), 17 deletions(-) diff --git a/plugins/dbgate-plugin-mysql/src/frontend/drivers.js b/plugins/dbgate-plugin-mysql/src/frontend/drivers.js index 7be9aaf52..a595e89d3 100644 --- a/plugins/dbgate-plugin-mysql/src/frontend/drivers.js +++ b/plugins/dbgate-plugin-mysql/src/frontend/drivers.js @@ -104,23 +104,23 @@ const dialect = { return []; }, - getTableFormOptions(intent) { - return [ - { - type: 'dropdowntext', - options: this.getSupportedEngines(), - label: 'Engine', - name: 'tableEngine', - sqlFormatString: '^engine = %s', - }, - { - type: 'text', - label: 'Comment', - name: 'objectComment', - sqlFormatString: '^comment = %v', - }, - ]; - }, + // getTableFormOptions(intent) { + // return [ + // { + // type: 'dropdowntext', + // options: this.getSupportedEngines(), + // label: 'Engine', + // name: 'tableEngine', + // sqlFormatString: '^engine = %s', + // }, + // { + // type: 'text', + // label: 'Comment', + // name: 'objectComment', + // sqlFormatString: '^comment = %v', + // }, + // ]; + // }, }; const mysqlDialect = {