mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-16 10:58:30 -05:00
fix edit data issue (#2285)
This commit is contained in:
@@ -304,8 +304,8 @@ export class EditDataComponent extends GridParentComponent implements OnInit, On
|
|||||||
self.currentCell = {
|
self.currentCell = {
|
||||||
row: row,
|
row: row,
|
||||||
column: column,
|
column: column,
|
||||||
isEditable: self.dataSet.columnDefinitions[column - 1]
|
isEditable: self.dataSet.columnDefinitions[column]
|
||||||
? self.dataSet.columnDefinitions[column - 1].isEditable
|
? self.dataSet.columnDefinitions[column].isEditable
|
||||||
: false
|
: false
|
||||||
};
|
};
|
||||||
});
|
});
|
||||||
|
|||||||
Reference in New Issue
Block a user