Skip to content
This repository has been archived by the owner on Jun 8, 2024. It is now read-only.

NodeJS 20 #9

Merged
merged 3 commits into from
Feb 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 18
node-version: 20
- name: Install Dependencies
run: npm install
- name: Build
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 18
node-version: 20
- name: Install Dependencies
run: npm install

Expand Down
6 changes: 4 additions & 2 deletions src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import React from "react";

import { useEffect, useState } from "react";
import 'bootstrap/dist/css/bootstrap.min.css';
import { Button, ButtonGroup, Container, Navbar, NavbarText} from "react-bootstrap";
import { Button, ButtonGroup, Container, NavLink, Navbar, NavbarText} from "react-bootstrap";

import Artikel from "./lib/artikel";

Expand Down Expand Up @@ -62,7 +62,9 @@ function Layout() {
</Button>
</ButtonGroup>
<ThemeSchalter />
<NavbarText>entwickelt von Max Mielchen</NavbarText>
<NavLink href="https://github.com/maxmielchen/stft" target="_blank" className="text-decoration-none">
<NavbarText>entwickelt von Max Mielchen</NavbarText>
</NavLink>
</Container>
</Navbar>

Expand Down