mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2024-11-22 01:26:48 +03:00
renamed keys and items to unify fonting perception
This commit is contained in:
parent
292d582d74
commit
021e95071f
|
@ -72,7 +72,7 @@ export default class JSONArrayNode extends React.Component {
|
|||
// caching it if it hasn't been created yet.
|
||||
getItemString() {
|
||||
if (!this.itemString) {
|
||||
this.itemString = this.props.data.length + ' Item' + (this.props.data.length > 1 ? 's' : '');
|
||||
this.itemString = this.props.data.length + ' item' + (this.props.data.length > 1 ? 's' : '');
|
||||
}
|
||||
return this.itemString;
|
||||
}
|
||||
|
|
|
@ -21,8 +21,7 @@ const styles = {
|
|||
},
|
||||
spanType: {
|
||||
marginLeft: 5,
|
||||
marginRight: 5,
|
||||
fontSize: '1em'
|
||||
marginRight: 5
|
||||
}
|
||||
};
|
||||
|
||||
|
@ -76,7 +75,7 @@ export default class JSONObjectNode extends React.Component {
|
|||
getItemString() {
|
||||
if (!this.itemString) {
|
||||
const len = Object.keys(this.props.data).length;
|
||||
this.itemString = len + ' Key' + (len > 1 ? 's' : '');
|
||||
this.itemString = len + ' key' + (len > 1 ? 's' : '');
|
||||
}
|
||||
return this.itemString;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user