Skip to content

Commit

Permalink
Deploy latest build
Browse files Browse the repository at this point in the history
  • Loading branch information
egon-development committed Apr 5, 2024
1 parent 9e87cb6 commit 979141a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
7 changes: 4 additions & 3 deletions app-latest-build/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -10339,9 +10339,10 @@ class TitleService {
reset() {
this.updateTitleAndDescription(_Domain_Common_constants__WEBPACK_IMPORTED_MODULE_1__.INITIAL_TITLE, _Domain_Common_constants__WEBPACK_IMPORTED_MODULE_1__.INITIAL_DESCRIPTION, false);
}
updateTitle(title) {
this.titleSubject.next(title ?? this.titleSubject.value);
document.title = title ?? this.titleSubject.value + ' - egon.io';
updateTitle(inputTitle) {
const title = !inputTitle || inputTitle.trim().length === 0 ? _Domain_Common_constants__WEBPACK_IMPORTED_MODULE_1__.INITIAL_TITLE : inputTitle;
this.titleSubject.next(title);
document.title = title === _Domain_Common_constants__WEBPACK_IMPORTED_MODULE_1__.INITIAL_TITLE ? 'egon.io' : title;
}
updateDescription(description) {
this.descriptionSubject.next(description ?? this.descriptionSubject.value);
Expand Down
2 changes: 1 addition & 1 deletion app-latest-build/main.js.map

Large diffs are not rendered by default.

0 comments on commit 979141a

Please sign in to comment.