mirror of
https://github.com/nocodb/nocodb.git
synced 2026-04-25 02:55:29 +00:00
fix: fallback default single/multi select type to text in mysql
Signed-off-by: Pranav C <pranavxc@gmail.com>
This commit is contained in:
@@ -3512,7 +3512,12 @@ export class Api<
|
||||
*/
|
||||
uploadByUrl: (
|
||||
query: { path: string },
|
||||
data: { url?: string }[],
|
||||
data: {
|
||||
url?: string;
|
||||
fileName?: string;
|
||||
mimetype?: string;
|
||||
size?: string;
|
||||
}[],
|
||||
params: RequestParams = {}
|
||||
) =>
|
||||
this.request<any, any>({
|
||||
|
||||
@@ -976,10 +976,10 @@ export class MysqlUi {
|
||||
colProp.dtxp = 1;
|
||||
break;
|
||||
case 'MultiSelect':
|
||||
colProp.dt = 'set';
|
||||
colProp.dt = 'text';
|
||||
break;
|
||||
case 'SingleSelect':
|
||||
colProp.dt = 'enum';
|
||||
colProp.dt = 'text';
|
||||
break;
|
||||
case 'Collaborator':
|
||||
colProp.dt = 'varchar';
|
||||
|
||||
Reference in New Issue
Block a user