rename parameter
This commit is contained in:
@@ -169,8 +169,8 @@
|
||||
|
||||
}
|
||||
|
||||
function ucfirst(hest) {
|
||||
return hest.charAt(0).toUpperCase() + hest.slice(1);
|
||||
function ucfirst(string) {
|
||||
return string.charAt(0).toUpperCase() + string.slice(1);
|
||||
}
|
||||
|
||||
function getLocalDate(date, culture, format) {
|
||||
|
||||
@@ -164,7 +164,7 @@
|
||||
<umb-box-content class="block-form">
|
||||
|
||||
<umb-control-group data-element="node-info-create-date" label="@template_createdDate">
|
||||
{{node.createDateFormatted | amDateFormat:'MMMM Do YYYY, HH:mm'}} <localize key="general_by">by</localize> {{ node.owner.name }}
|
||||
{{node.createDateFormatted}} <localize key="general_by">by</localize> {{ node.owner.name }}
|
||||
</umb-control-group>
|
||||
|
||||
<umb-control-group data-element="node-info-document-type" label="@content_documentType">
|
||||
|
||||
Reference in New Issue
Block a user