+
+
+
@@ -21,12 +24,12 @@
{{ model.firstname | capitalize }}
- {{ model.lastname | uppercase }}
+ {{ model.lastname.toUpperCase() }}
- {{ model.headline | uppercase }}
+ {{ model.headline.toUpperCase() }}
@@ -39,9 +42,6 @@
@Component({
filters: {
- uppercase(raw: string): string {
- return raw.toUpperCase();
- },
capitalize(raw: string): string {
if ( raw.length < 2 ) {
return raw.toUpperCase();
@@ -59,21 +59,24 @@