Skip to content

Commit

Permalink
Updated Launch Date label to Proposed Launch Date in Program List (#145)
Browse files Browse the repository at this point in the history
Updated Launch Date tool tip to and Proposed Launch Date in Program Details page
  • Loading branch information
TyroneAEM authored Jul 29, 2024
1 parent 7640ed5 commit bbc1f10
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion blocks/gmo-program-details/gmo-program-details.css
Original file line number Diff line number Diff line change
Expand Up @@ -531,7 +531,7 @@ body {
z-index: 1;
position: absolute;
text-align: center;
width: 100px;
width: 120px;
padding: 2px 0;
font: normal normal normal 12px/17px Adobe Clean;
margin-left: 100px;
Expand Down
2 changes: 1 addition & 1 deletion blocks/gmo-program-details/gmo-program-details.js
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ function buildHeader(program, queryVars) {
const headerWrapper = document.createElement('div');
headerWrapper.classList.add('details-header-wrapper');
const date = program && program.launchDate ? `<div class="header-row3"><span class="icon icon-calendar">` +
`</span><span class="date-tooltip">Launch date</span><span class="campaign-date">${formatDate(program.launchDate)}</span></div>` : "";
`</span><span class="date-tooltip">Proposed Launch Date</span><span class="campaign-date">${formatDate(program.launchDate)}</span></div>` : "";
const programName = program ? program.programName : queryVars.programName;
const campaignName = program && program.campaignName ? '<div class="header-row2"><span class="subtitle">' + program.campaignName + '</span></div> ': "";

Expand Down
2 changes: 1 addition & 1 deletion blocks/gmo-program-list/gmo-program-list.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ const headerConfig = [
'sortable': false
},
{
'name': 'Launch Date',
'name': 'Proposed Launch Date',
'attribute': 'launch',
'sortable': true,
'type': 'date'
Expand Down

0 comments on commit bbc1f10

Please sign in to comment.