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",
|
||||
"licenseType": "MIT",
|
||||
"link": "git://github.com/Automattic/mongoose.git",
|
||||
"comment": "4.3.6"
|
||||
"comment": "4.3.7"
|
||||
},
|
||||
{
|
||||
"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) {
|
||||
return ((data.persistent['tags'] || []).map(tag => chalk.cyan(`${tag.toUpperCase()}`)))
|
||||
.concat((data.transient['tags'] || []).map(tag => chalk.magenta(`${tag.toUpperCase()}`))).join(' ');
|
||||
return ((data.persistent['tags'] || []).map(tag => chalk.cyan(`${String(tag).toUpperCase()}`)))
|
||||
.concat((data.transient['tags'] || []).map(tag => chalk.magenta(`${String(tag).toUpperCase()}`))).join(' ');
|
||||
}
|
||||
|
||||
inspectPre(data) {
|
||||
|
|
Loading…
Add table
Reference in a new issue