mirror of
https://github.com/nocodb/nocodb.git
synced 2026-05-05 16:47:28 +00:00
Nc feat/Readonly source followup (#8795)
* feat: allow partial column update (GUI) * feat: allow partial column update (backend) * refactor: swagger schema description correction * feat: allow edit from multi field editor * fix: allow meta update in api level * fix: add tooltip and docs link * fix: multi field editor corrections * fix: allow table meta update * fix: allow table meta update * fix: allow column validation update * fix: block adding new option directly from cell * fix: add tooltip for column menu options * refactor: tooltips * test: replace index with count as parameter * fix: corrections * refactor: hint text update
This commit is contained in:
@@ -66,9 +66,9 @@ test.describe('Rating - cell, filter, sort', () => {
|
||||
});
|
||||
|
||||
// In cell insert
|
||||
await dashboard.grid.cell.rating.select({ index: 0, columnHeader: 'rating', rating: 2 });
|
||||
await dashboard.grid.cell.rating.select({ index: 2, columnHeader: 'rating', rating: 1 });
|
||||
await dashboard.grid.cell.rating.select({ index: 5, columnHeader: 'rating', rating: 0 });
|
||||
await dashboard.grid.cell.rating.select({ index: 0, columnHeader: 'rating', rating: 3 });
|
||||
await dashboard.grid.cell.rating.select({ index: 2, columnHeader: 'rating', rating: 2 });
|
||||
await dashboard.grid.cell.rating.select({ index: 5, columnHeader: 'rating', rating: 1 });
|
||||
|
||||
// column values
|
||||
// 1a : 3
|
||||
|
||||
Reference in New Issue
Block a user