From 01f30d4194bb63edb6bdf78d653ca5119bfcc4fd Mon Sep 17 00:00:00 2001 From: Gandharv Date: Sat, 20 Nov 2021 06:56:47 +0530 Subject: [PATCH] chore: delete mysql source file (#1435) This PR deletes the mysql file for data sources as its moved to schema --- .../SourceComponents/Mysql.jsx | 79 ------------------- 1 file changed, 79 deletions(-) delete mode 100644 frontend/src/Editor/DataSourceManager/SourceComponents/Mysql.jsx diff --git a/frontend/src/Editor/DataSourceManager/SourceComponents/Mysql.jsx b/frontend/src/Editor/DataSourceManager/SourceComponents/Mysql.jsx deleted file mode 100644 index e7b1634dbd..0000000000 --- a/frontend/src/Editor/DataSourceManager/SourceComponents/Mysql.jsx +++ /dev/null @@ -1,79 +0,0 @@ -import React from 'react'; - -export const Mysql = ({ optionchanged, options }) => { - return ( -
-
-
- - optionchanged('host', e.target.value)} - value={options.host.value} - /> -
-
- - optionchanged('port', e.target.value)} - value={options.port.value} - /> -
-
- - -
-
-
- -
- optionchanged('database', e.target.value)} - value={options.database.value} - /> -
-
- - optionchanged('username', e.target.value)} - value={options.username.value} - /> -
-
- - optionchanged('password', e.target.value)} - value={options.password.value} - /> -
-
-
- ); -};