-
Notifications
You must be signed in to change notification settings - Fork 2
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
CSCEXAM-1396 Add titles to teacher and admin tab title #1190
Conversation
@@ -31,6 +31,7 @@ export const APP_ROUTES: Route[] = [ | |||
{ | |||
path: 'logout', | |||
component: LogoutComponent, | |||
title: () => buildTitle('i18n_logout_title'), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Tää on periaatteessa turha, koska tää sivu näkyy ruudulla noin 20 millisekuntia
@@ -115,7 +116,7 @@ export const APP_ROUTES: Route[] = [ | |||
path: 'enrolments/:id', | |||
loadComponent: () => | |||
import('./enrolment/exams/exam-enrolments.component').then((mod) => mod.ExamEnrolmentsComponent), | |||
title: (route) => buildTitle('i18n_enrolment_title', `#${route.params.id}`), | |||
title: () => buildTitle('i18n_enrolment_title'), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Totesin numeroinnin ylimääräiseksi niin poistin sen kaikista kohista kokonaan
const extra = extraPart ? ` ${extraPart}` : ''; | ||
return tx.get(key).pipe(map(() => `${tx.instant(key)}${extra} - EXAM`)); | ||
}; | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Oisko tän voinu tehä niin että funktion ois hakenu app.routes filusta?
622c67b
to
61fd037
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Käännöksissä on jotain outoja välilyöntimuutoksia. Muuten näyttää ok:lta.
Kielitiedostoissa oli 1. ylimääräsiä välilyöntejä 2. erikoismerkkinä merkattuja välilyöntejä. AI halus välttämättä korjaa ne ja oon sen kanssa samaa mieltä. Oon joskus korjannu niitä manuaalisesti, mut nyt ku se olli automaattista nii se oli kivan helppo suoritus. |
No description provided.