Commit e681dd5b authored by Pedro Eduardo Trujillo's avatar Pedro Eduardo Trujillo
Browse files

Omite valores con cadena vacía en atlas

parent f7dbeeb8
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -142,7 +142,7 @@ define([
			var content = '',
				classRow = 'paddingItemInRow';

			if (value !== null && value !== undefined) {
			if (value !== null && value !== undefined && value !== '') {

				content += '<span class="' + classRow + '"><span class="bold fontExo2">' + (i18n[key] || key) +
					'</span>: ';