@@ -461,8 +464,9 @@ export class App extends React.Component<{}, State> {
};
generateExceptionDataGridRow = (row: number) => {
+ const editing = row === this.state.editExceptionRow;
return
- {this.state.exceptions[row].type}
+ {this.renderEditableCell(`exceptionType-${row}`, this.state.exceptions[row].type, editing, editing, "1")}
{row === this.state.editExceptionRow ?