We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 026a873 + 5f2d993 commit bd3baebCopy full SHA for bd3baeb
1 file changed
packages/devextreme/js/__internal/grids/grid_core/ai_assistant/commands/selection.ts
@@ -44,7 +44,7 @@ export const selectByKeysCommand = defineGridCommand({
44
});
45
46
const selectByIndexesCommandSchema = z.object({
47
- indexes: z.array(z.number().int().positive()).min(1),
+ indexes: z.array(z.number().int().min(1)).min(1),
48
}).strict();
49
50
export const selectByIndexesCommand = defineGridCommand({
0 commit comments