Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ASSETS-88931 : Update the 'Launch Date' label to "Proposed Launch Date" #145

Merged
merged 1 commit into from
Jul 29, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading