Skip to content

Commit

Permalink
fix euler page
Browse files Browse the repository at this point in the history
  • Loading branch information
Sepideh Alassi committed Apr 5, 2024
1 parent 03f6026 commit bdf580a
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 12 deletions.
10 changes: 6 additions & 4 deletions src/app/biography/biography.component.html
Expand Up @@ -311,6 +311,7 @@ <h2>Correspondence</h2>

<section>
<h2>Additional</h2>
<h3>Third Person Correspondence</h3>
<p>Correspondence between
<strong>{{correspondences_Condorcet.mainCorrespondent.name}}</strong> and
<!-- select list to choose the recipient name (among one or several choices) -->
Expand All @@ -325,17 +326,18 @@ <h2>Additional</h2>
</mat-select>
</mat-form-field>
</p>
<h3>Editorial Texts</h3>
<p>
<mat-card class="intro-card" appearance="outlined" routerLink="/leoo4A_4_intro">
<mat-card-content>
<mat-card-title>Introduction</mat-card-title>
Leonhardi Euleri Opera Omnia 4A/4
<mat-card-title>Introduction Opera Omnia IVA/4</mat-card-title>

</mat-card-content>
</mat-card>
<mat-card class="intro-card" appearance="outlined" routerLink="/lece_intro">
<mat-card-content>
<mat-card-title>Introduction</mat-card-title>
Leonhardi Euleri Commercium Epistolicum
<mat-card-title>Introduction Opera Omnia IVA/9</mat-card-title>

</mat-card-content>
</mat-card>
</p>
Expand Down
4 changes: 2 additions & 2 deletions src/app/biography/biography.component.ts
Expand Up @@ -364,9 +364,10 @@ export class BiographyComponent implements OnInit, OnDestroy {
);

this.correspondences_Leonhard_Euler = new CorrespondenceGroup(this.Leonhard_Euler, [
new Correspondence(this.Leonhard_Euler, this.Christian_Goldbach),
new Correspondence(this.Leonhard_Euler, this.Condorcet),
new Correspondence(this.Leonhard_Euler, this.Turgot),
new Correspondence(this.Leonhard_Euler, this.Christian_Goldbach)

]);

this.correspondences_Johann_Albrecht_Euler = new CorrespondenceGroup(this.Johann_Albrecht_Euler, [
Expand All @@ -380,7 +381,6 @@ export class BiographyComponent implements OnInit, OnDestroy {

this.correspondences_Condorcet = new CorrespondenceGroupWithSection(this.Condorcet, [
new Section('Condorcet', [
new Correspondence(this.Condorcet, this.Leonhard_Euler),
new Correspondence(this.Condorcet, this.Johann_Albrecht_Euler),
new Correspondence(this.Condorcet, this.Lexell),
new Correspondence(this.Condorcet, this.FussNI)
Expand Down
4 changes: 2 additions & 2 deletions src/app/lece-leoo/lece-leoo.component.html
Expand Up @@ -14,7 +14,7 @@
<div class="main-content" [ngSwitch]="url">

<ng-container *ngSwitchCase="'leoo4A_4_intro'">
<h1>Leonhardi Euleri Opera Omnia 4A/4</h1>
<h1>Opera Omnia IVA/4</h1>

<div class="row">
<mat-card class="intro-card" appearance="outlined" routerLink="/introduction/leoo/goldbach_preface">
Expand All @@ -39,7 +39,7 @@ <h1>Leonhardi Euleri Opera Omnia 4A/4</h1>
</ng-container>

<ng-container *ngSwitchCase="'lece_intro'">
<h1>Leonhardi Euleri Commercium Epistolicum</h1>
<h1>Opera Omnia IVA/9</h1>
<div class="row">
<mat-card class="intro-card" appearance="outlined" routerLink="/introduction/lece/CondorcetTurgot_preface">
<mat-card-content>Préface</mat-card-content>
Expand Down
Expand Up @@ -49,10 +49,11 @@ <h4 class="subheading-2">Manuscript number</h4>
<main>

<section *ngIf="props?.title[0]" class="title center">
<p>
<read-text-value [valueObject]="props?.title[0]" [bindEvents]="false" [resource]="resource.readResource">
</read-text-value>
</p>
<h4>
<read-text-value [valueObject]="props?.title[0]" [bindEvents]="false" [resource]="resource.readResource">
</read-text-value>
</h4>

</section>
<ng-container *ngIf="isPartOfReisbuechlein">
<section *ngIf="pages$ | async as page" class="transcription-btn">
Expand Down

0 comments on commit bdf580a

Please sign in to comment.