mirror of
https://github.com/nocodb/nocodb.git
synced 2026-02-02 02:47:29 +00:00
fix swapped pg and mysql handler for percent and rating
This commit is contained in:
@@ -151,8 +151,8 @@ const HANDLER_REGISTRY: Partial<
|
||||
},
|
||||
[UITypes.Percent]: {
|
||||
[CLIENT_DEFAULT]: PercentGeneralHandler,
|
||||
[ClientType.PG]: PercentMysqlHandler,
|
||||
[ClientType.MYSQL]: PercentPgHandler,
|
||||
[ClientType.PG]: PercentPgHandler,
|
||||
[ClientType.MYSQL]: PercentMysqlHandler,
|
||||
[ClientType.SQLITE]: PercentSqliteHandler,
|
||||
},
|
||||
[UITypes.Duration]: {
|
||||
@@ -160,8 +160,8 @@ const HANDLER_REGISTRY: Partial<
|
||||
},
|
||||
[UITypes.Rating]: {
|
||||
[CLIENT_DEFAULT]: RatingGeneralHandler,
|
||||
[ClientType.PG]: RatingMysqlHandler,
|
||||
[ClientType.MYSQL]: RatingPgHandler,
|
||||
[ClientType.PG]: RatingPgHandler,
|
||||
[ClientType.MYSQL]: RatingMysqlHandler,
|
||||
[ClientType.SQLITE]: RatingSqliteHandler,
|
||||
},
|
||||
[UITypes.Formula]: {
|
||||
|
||||
Reference in New Issue
Block a user