Skip to content

Commit f2e1f95

Browse files
authored
made expiresAt field readOnly (#1686)
1 parent 8188e62 commit f2e1f95

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/dashboard/Data/Browser/BrowserTable.react.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -200,6 +200,9 @@ export default class BrowserTable extends React.Component {
200200
readonly = true;
201201
}
202202
}
203+
if(name === 'expiresAt' && this.props.className === '_Session'){
204+
readonly = true;
205+
}
203206
let obj = this.props.current.row < 0 ? this.props.newObject : this.props.data[this.props.current.row];
204207
let value = obj;
205208
if (!this.props.isUnique) {

0 commit comments

Comments
 (0)