Commit 6ea2133c authored by Pedro Eduardo Trujillo's avatar Pedro Eduardo Trujillo
Browse files

Corrige uso de función ya inexistente en ámbito

Quedó una referencia perdida a la función 'date' de los antiguos
helpers, de los que ahora quedan vestigios en Helpers/legacy.js. En su
lugar, emplea la misma función ahora definida dentro de
Helpers/string.js. El problema se introdujo en el commit 967dd862.
parent 2a0e1819
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -476,9 +476,9 @@ define([
				content += '<div><span class="propValue paddingLeftRow"> - ' + item.type.name;

				if (item.startDate) {
					content += ' (' + date(item.startDate).string + ' - ' ;
					content += ' (' + handlebars.helpers.Date(item.startDate).string + ' - ' ;
					if (item.endDate) {
						content += date(item.endDate).string;
						content += handlebars.helpers.Date(item.endDate).string;
					} else {
						content += '   ';
					}