MessageDto instead of String in Event history
This commit is contained in:
		| @@ -1,7 +1,7 @@ | ||||
| #environment: | ||||
| server.port = 8097 | ||||
| server.port = 8098 | ||||
| spring.application.name = klaus | ||||
| eureka.client.service-url.defaultZone=http://netflix:eureka@localhost:8761/eureka/ | ||||
| eureka.client.service-url.defaultZone=http://netflix:eureka@eureka:8761/eureka/ | ||||
| spring.cloud.config.discovery.service-id = klaus-config-service | ||||
| #spring.cloud.config.fail-fast=true | ||||
| #spring.cloud.config.username = SpringConfigUsername | ||||
| @@ -11,6 +11,3 @@ spring.output.ansi.enabled = always | ||||
| logging.level.root=INFO | ||||
| logging.level.org.springframework.web=INFO | ||||
| logging.level.com.release11=INFO | ||||
|  | ||||
| redis.host = localhost | ||||
| redis.port = 6379 | ||||
										
											Binary file not shown.
										
									
								
							
										
											Binary file not shown.
										
									
								
							| @@ -13,8 +13,8 @@ var state = { | ||||
|   'window': 5, | ||||
| } | ||||
|  | ||||
| var myList, data, previousSort; | ||||
|  | ||||
| var myList, data, previousSort, messageList; | ||||
| messageList = messageListForPagination; | ||||
| state.querySet = listForPagination; | ||||
| buildTable(); | ||||
|  | ||||
| @@ -111,9 +111,11 @@ function showTable() { | ||||
|                     <td>${myList[i-1].interfaceName}</td> | ||||
|                     </tr> | ||||
|                     <tr bgcolor="${color}" id="etrack-tr-${j}-body" name="tr-body" hidden> | ||||
|                     <td colspan="4">"${myList[i-1].message}"</td> | ||||
|                     <td colspan="4">"${messageList[i-1]}"</td> | ||||
|                     </tr>` | ||||
|     table.append(row) | ||||
|  | ||||
|  | ||||
|   } | ||||
|   for (var i = myList.length + 1; i <= state.rows; i++) { | ||||
|     i % 2 === 0 ? color = "#b3ffff" : color="#e6ffff"; | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 Szakalakamaka
					Szakalakamaka