Skip to content

Commit

Permalink
Merge pull request #17601 from jeclrsg/hpcc-29955-audit-server-log-ta…
Browse files Browse the repository at this point in the history
…b-ids

HPCC-29955 ECL Watch fix dali audit and server logs should have unique tab ids
  • Loading branch information
GordonSmith authored Jul 19, 2023
2 parents 09a6603 + 86be382 commit a2b1a5a
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions esp/src/eclwatch/SystemServersQueryWidget.js
Original file line number Diff line number Diff line change
Expand Up @@ -354,10 +354,11 @@ define([
},

_onOpenLog: function (item, type) {
var nodeTab = this.ensureLogsPane(item.Name + ": " + item.Parent.LogDirectory, {
var LogDirectory = type === "Audit Log" ? item.Parent.AuditLogDirectory : item.Parent.LogDirectory;
var nodeTab = this.ensureLogsPane(item.Name + ": " + LogDirectory, {
params: item,
ParentName: item.Parent.Name,
LogDirectory: type === "Audit Log" ? item.Parent.AuditLogDirectory : item.Parent.LogDirectory,
LogDirectory,
NetAddress: item.Netaddress,
OS: item.OS,
newPreflight: true
Expand Down

0 comments on commit a2b1a5a

Please sign in to comment.