Skip to content

Commit 2775b24

Browse files
committed
part2 repo links
1 parent 1013288 commit 2775b24

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

src/content/2/en/part2b.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -259,7 +259,7 @@ The event handler also resets the value of the controlled input element by calli
259259
setNewNote('')
260260
```
261261

262-
You can find the code for our current application in its entirety in the <i>part2-2</i> branch of [this GitHub repository](https://github.com/fullstack-hy2020/part2-notes/tree/part2-2).
262+
You can find the code for our current application in its entirety in the <i>part2-2</i> branch of [this GitHub repository](https://github.com/fullstack-hy2020/part2-notes-frontend/tree/part2-2).
263263

264264
### Filtering Displayed Elements
265265

@@ -392,7 +392,7 @@ The text of the button depends on the value of the <em>showAll</em> state:
392392
show {showAll ? 'important' : 'all'}
393393
```
394394

395-
You can find the code for our current application in its entirety in the <i>part2-3</i> branch of [this GitHub repository](https://github.com/fullstack-hy2020/part2-notes/tree/part2-3).
395+
You can find the code for our current application in its entirety in the <i>part2-3</i> branch of [this GitHub repository](https://github.com/fullstack-hy2020/part2-notes-frontend/tree/part2-3).
396396
</div>
397397

398398
<div class="tasks">

src/content/2/en/part2e.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ The result looks like this:
199199

200200
![error removed from server screenshot from app](../../images/2/26e.png)
201201

202-
The code for the current state of our application can be found in the <i>part2-7</i> branch on [GitHub](https://github.com/fullstack-hy2020/part2-notes/tree/part2-7).
202+
The code for the current state of our application can be found in the <i>part2-7</i> branch on [GitHub](https://github.com/fullstack-hy2020/part2-notes-frontend/tree/part2-7).
203203

204204
### Inline styles
205205

@@ -274,7 +274,7 @@ The philosophy of React is, in fact, the polar opposite of this. Since the separ
274274

275275
The structural units that make up the application's functional entities are React components. A React component defines the HTML for structuring the content, the JavaScript functions for determining functionality, and also the component's styling; all in one place. This is to create individual components that are as independent and reusable as possible.
276276

277-
The code of the final version of our application can be found in the <i>part2-8</i> branch on [GitHub](https://github.com/fullstack-hy2020/part2-notes/tree/part2-8).
277+
The code of the final version of our application can be found in the <i>part2-8</i> branch on [GitHub](https://github.com/fullstack-hy2020/part2-notes-frontend/tree/part2-8).
278278

279279
</div>
280280

src/content/2/fi/osa2e.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ Lopputulos näyttää seuraavalta:
199199

200200
![](../../images/2/26e.png)
201201

202-
Sovelluksen tämänhetkinen koodi on kokonaisuudessaan [GitHubissa](https://github.com/fullstack-hy2020/part2-notes/tree/part2-7), branchissa <i>part2-7</i>.
202+
Sovelluksen tämänhetkinen koodi on kokonaisuudessaan [GitHubissa](https://github.com/fullstack-hy2020/part2-notes-frontend/tree/part2-7), branchissa <i>part2-7</i>.
203203

204204
### Inline-tyylit
205205

@@ -272,7 +272,7 @@ CSS:n, HTML:n ja JavaScriptin erottelu omiin tiedostoihinsa ei kuitenkaan ole v
272272

273273
Toiminnallisen kokonaisuuden strukturointiyksikkö on React-komponentti, joka määrittelee niin sisällön rakenteen kuvaavan HTML:n, toiminnan määrittelevät JavaScript-funktiot kuin komponentin tyylinkin yhdessä paikassa siten, että komponenteista tulee mahdollisimman riippumattomia ja yleiskäyttöisiä.
274274

275-
Sovelluksen lopullinen koodi on kokonaisuudessaan [GitHubissa](https://github.com/fullstack-hy2020/part2-notes/tree/part2-8), branchissa <i>part2-8</i>.
275+
Sovelluksen lopullinen koodi on kokonaisuudessaan [GitHubissa](https://github.com/fullstack-hy2020/part2-notes-frontend/tree/part2-8), branchissa <i>part2-8</i>.
276276

277277
</div>
278278

src/content/3/en/part3b.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -390,7 +390,7 @@ The script looks like this
390390
{
391391
"scripts": {
392392
// ...
393-
"build:ui": "rm -rf build && cd ../part2-notes/ && npm run build && cp -r build ../notes-backend",
393+
"build:ui": "rm -rf build && cd ../notes-frontend/ && npm run build && cp -r build ../notes-backend",
394394
"deploy": "fly deploy",
395395
"deploy:full": "npm run build:ui && npm run deploy",
396396
"logs:prod": "fly logs"
@@ -488,7 +488,7 @@ A negative aspect of our approach is how complicated it is to deploy the fronten
488488
489489
In some situations, it may be sensible to deploy the frontend code as its own application.
490490
491-
The current backend code can be found on [Github](https://github.com/fullstack-hy2020/part3-notes-backend/tree/part3-3), in the branch <i>part3-3</i>. The changes in frontend code are in <i>part3-1</i> branch of the [frontend repository](https://github.com/fullstack-hy2020/part2-notes/tree/part3-1).
491+
The current backend code can be found on [Github](https://github.com/fullstack-hy2020/part3-notes-backend/tree/part3-3), in the branch <i>part3-3</i>. The changes in frontend code are in <i>part3-1</i> branch of the [frontend repository](https://github.com/fullstack-hy2020/part2-notes-frontend/tree/part3-1).
492492
493493
</div>
494494

src/content/3/fi/osa3b.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -418,7 +418,7 @@ Tähänkin on useita erilaisia ratkaisuja (esim. sekä frontendin että backendi
418418
419419
Sovelluksen tämänhetkinen koodi on kokonaisuudessaan [GitHubissa](https://github.com/fullstack-hy2020/part3-notes-backend/tree/part3-3), branchissa <i>part3-3</i>.
420420
421-
Frontendin koodiin tehdyt muutokset ovat [frontendin repositorion](https://github.com/fullstack-hy2020/part2-notes/tree/part3-1) branchissa <i>part3-1</i>.
421+
Frontendin koodiin tehdyt muutokset ovat [frontendin repositorion](https://github.com/fullstack-hy2020/part2-notes-frontend/tree/part3-1) branchissa <i>part3-1</i>.
422422
423423
</div>
424424

0 commit comments

Comments
 (0)