mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2025-01-31 19:54:35 +03:00
renamed Items to Keys for clarity
This commit is contained in:
parent
dbbe482e8d
commit
2c1643b0c6
|
@ -78,7 +78,7 @@ export default class JSONObjectNode extends React.Component {
|
||||||
getItemString() {
|
getItemString() {
|
||||||
if (!this.itemString) {
|
if (!this.itemString) {
|
||||||
const len = Object.keys(this.props.data).length;
|
const len = Object.keys(this.props.data).length;
|
||||||
this.itemString = len + ' Item' + (len > 1 ? 's' : '');
|
this.itemString = len + ' Key' + (len > 1 ? 's' : '');
|
||||||
}
|
}
|
||||||
return this.itemString;
|
return this.itemString;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user