Skip to content

Commit

Permalink
made expiresAt field readOnly (parse-community#1686)
Browse files Browse the repository at this point in the history
  • Loading branch information
sadakchap authored and Arul- committed May 4, 2021
1 parent c5774f5 commit 28a1160
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/dashboard/Data/Browser/BrowserTable.react.js
Original file line number Diff line number Diff line change
Expand Up @@ -200,6 +200,9 @@ export default class BrowserTable extends React.Component {
readonly = true;
}
}
if(name === 'expiresAt' && this.props.className === '_Session'){
readonly = true;
}
let obj = this.props.current.row < 0 ? this.props.newObject : this.props.data[this.props.current.row];
let value = obj;
if (!this.props.isUnique) {
Expand Down

0 comments on commit 28a1160

Please sign in to comment.