don't be too funny

This commit is contained in:
philipp 2023-09-05 13:21:18 +02:00
parent 36d86b079b
commit 16ca1a3482

View File

@ -223,10 +223,6 @@ function initTripSidebar(triggerElement: HTMLElement) {
function replaceStrings() { function replaceStrings() {
const weekdays = document.querySelectorAll('.weekday-js'); const weekdays = document.querySelectorAll('.weekday-js');
Array.prototype.forEach.call(weekdays, (weekday: HTMLElement) => { Array.prototype.forEach.call(weekdays, (weekday: HTMLElement) => {
<<<<<<< HEAD
=======
//weekday.innerHTML = weekday.innerHTML.replace('Donnerstag', 'Dönerstag');
>>>>>>> 8797bfd ([TASK] replace Freitag with Markttag for phipsi)
weekday.innerHTML = weekday.innerHTML.replace('Freitag', 'Markttag'); weekday.innerHTML = weekday.innerHTML.replace('Freitag', 'Markttag');
}); });
} }