Skip to content

Commit

Permalink
Update toolbar.js (#4126)
Browse files Browse the repository at this point in the history
reuse existing string (capitalization)
  • Loading branch information
walterbender authored Dec 9, 2024
1 parent 2b4d1cd commit 38031f8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/toolbar.js
Original file line number Diff line number Diff line change
Expand Up @@ -1057,7 +1057,7 @@ function renderNewProjectConfirmation() {
const newDropdown = document.getElementById("newdropdown");
newDropdown.innerHTML = '';
const title = document.createElement("div");
title.innerHTML = `<h2 style="color: #0066FF; font-size: 24px; text-align: left; margin: 0;">${_("New Project")}</h2>`;
title.innerHTML = `<h2 style="color: #0066FF; font-size: 24px; text-align: left; margin: 0;">${_("New project")}</h2>`;
newDropdown.appendChild(title);
const confirmationMessage = document.createElement("div");
confirmationMessage.innerHTML = `<div id="confirmation-message" style="color: #666666; font-size: 16px; margin-bottom: 24px; text-align: left;">${_("Are you sure you want to create a new project?")}</div>`;
Expand Down

0 comments on commit 38031f8

Please sign in to comment.