forked from mirrors/Scribe.js
toUpperCase fix
This commit is contained in:
parent
ca2b5bbffc
commit
9732654fec
6 changed files with 104256 additions and 58 deletions
|
@ -166,7 +166,7 @@
|
||||||
"material": "material",
|
"material": "material",
|
||||||
"licenseType": "MIT",
|
"licenseType": "MIT",
|
||||||
"link": "git://github.com/Automattic/mongoose.git",
|
"link": "git://github.com/Automattic/mongoose.git",
|
||||||
"comment": "4.3.6"
|
"comment": "4.3.7"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"department": "kessler",
|
"department": "kessler",
|
||||||
|
|
21
public/scripts/TweenMax.min.js
vendored
21
public/scripts/TweenMax.min.js
vendored
File diff suppressed because one or more lines are too long
22530
public/scripts/login/Bootstrap.min.js
vendored
22530
public/scripts/login/Bootstrap.min.js
vendored
File diff suppressed because one or more lines are too long
848
public/scripts/three.min.js
vendored
848
public/scripts/three.min.js
vendored
File diff suppressed because one or more lines are too long
80909
public/scripts/viewer/Bootstrap.min.js
vendored
80909
public/scripts/viewer/Bootstrap.min.js
vendored
File diff suppressed because one or more lines are too long
|
@ -49,8 +49,8 @@ export default class Inspector {
|
||||||
}
|
}
|
||||||
|
|
||||||
inspectTags(data) {
|
inspectTags(data) {
|
||||||
return ((data.persistent['tags'] || []).map(tag => chalk.cyan(`${tag.toUpperCase()}`)))
|
return ((data.persistent['tags'] || []).map(tag => chalk.cyan(`${String(tag).toUpperCase()}`)))
|
||||||
.concat((data.transient['tags'] || []).map(tag => chalk.magenta(`${tag.toUpperCase()}`))).join(' ');
|
.concat((data.transient['tags'] || []).map(tag => chalk.magenta(`${String(tag).toUpperCase()}`))).join(' ');
|
||||||
}
|
}
|
||||||
|
|
||||||
inspectPre(data) {
|
inspectPre(data) {
|
||||||
|
|
Loading…
Add table
Reference in a new issue