Skip to content

Commit

Permalink
HPCC-32600 ECL Watch change DFU Workunits nav tab label
Browse files Browse the repository at this point in the history
change the label of tabs for DFU Workunits in the navigation to read
"DFU Workunits" rather than "Workunits"

Signed-off-by: Jeremy Clements <[email protected]>
  • Loading branch information
jeclrsg committed Sep 6, 2024
1 parent c8117d4 commit 283909e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion esp/src/eclwatch/templates/GetDFUWorkunitsWidget.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<div class="${baseClass}">
<div id="${id}BorderContainer" class="${baseClass}BorderContainer" style="width: 100%; height: 100%;" data-dojo-type="dijit.layout.BorderContainer">
<div id="${id}TabContainer" data-dojo-props="region: 'center', tabPosition: 'top'" style="width: 100%; height: 100%" data-dojo-type="dijit.layout.TabContainer">
<div id="${id}_Workunits" style="width: 100%; height: 100%" data-dojo-props='title:"Workunits"' data-dojo-type="dijit.layout.BorderContainer">
<div id="${id}_Workunits" style="width: 100%; height: 100%" data-dojo-props='title:"${i18n.title_GetDFUWorkunits}"' data-dojo-type="dijit.layout.BorderContainer">
<div id="${id}Toolbar" class="topPanel" data-dojo-props="region: 'top'" data-dojo-type="dijit.Toolbar">
<div id="${id}Refresh" data-dojo-attach-event="onClick:_onRefresh" data-dojo-props="iconClass:'iconRefresh'" data-dojo-type="dijit.form.Button">${i18n.Refresh}</div>
<span data-dojo-type="dijit.ToolbarSeparator"></span>
Expand Down
2 changes: 1 addition & 1 deletion esp/src/eclwatch/templates/HPCCPlatformFilesWidget.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
</div>
<div id="${id}_LandingZones" title="${i18n.LandingZones}" data-dojo-props="delayWidget: 'LZBrowseWidget'" data-dojo-type="DelayLoadWidget">
</div>
<div id="${id}_Workunits" title="${i18n.Workunits}" data-dojo-props="delayWidget: 'GetDFUWorkunitsWidget'" data-dojo-type="DelayLoadWidget">
<div id="${id}_Workunits" title="${i18n.title_GetDFUWorkunits}" data-dojo-props="delayWidget: 'GetDFUWorkunitsWidget'" data-dojo-type="DelayLoadWidget">
</div>
<div id="${id}_Xref" title="${i18n.XRef}" data-dojo-props="delayWidget: 'XrefQueryWidget'" data-dojo-type="DelayLoadWidget">
</div>
Expand Down
2 changes: 1 addition & 1 deletion esp/src/src-react/components/Menu.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ const subMenuItems: SubMenuItems = {
"files": [
{ headerText: nlsHPCC.LogicalFiles, itemKey: "/files" },
{ headerText: nlsHPCC.LandingZones, itemKey: "/landingzone" },
{ headerText: nlsHPCC.Workunits, itemKey: "/dfuworkunits" },
{ headerText: nlsHPCC.title_GetDFUWorkunits, itemKey: "/dfuworkunits" },
{ headerText: nlsHPCC.XRef + " (L)", itemKey: "/xref" },
],
"queries": [
Expand Down

0 comments on commit 283909e

Please sign in to comment.