You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
html+=`<a href="${httpRequest.path}?${queryText}modelName=${s.modelName}">View thread info for ${s.modelName}</a><br>`
172
+
html+=`<a href="${httpRequest.path}?${queryText}modelName=${s.modelName}">View data in ${s.modelName} thread</a><br>`
173
173
try{
174
174
console.debug(httpRequest.query.details==='data')
175
175
if(httpRequest.query.details==='data'){
176
176
constrelated=findLocalRelatedModels(s.modelName)
177
177
related.forEach(
178
-
rel=>
179
-
(html+=`<a href="${httpRequest.path}?${queryText}modelName=${s.modelName}&poolName=${rel}">View ${s.modelName} thread info for ${rel}</a><br>`)
178
+
relModel=>
179
+
(html+=`<a href="${httpRequest.path}?${queryText}modelName=${s.modelName}&poolName=${relModel}">View ${relModel} data from ${s.modelName} thread</a><br>`)
0 commit comments