Skip to content

Commit 9cc228b

Browse files
committed
updated frontend
1 parent e1d351b commit 9cc228b

File tree

10 files changed

+4551
-1097
lines changed

10 files changed

+4551
-1097
lines changed

01-contenedores/lemoncode-challenge/dotnet-stack/frontend/package-lock.json

Lines changed: 843 additions & 419 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

01-contenedores/lemoncode-challenge/dotnet-stack/frontend/package.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@
33
"version": "1.0.0",
44
"description": "",
55
"main": "index.js",
6+
"engines": {
7+
"node": "22.x.x"
8+
},
69
"scripts": {
710
"test": "echo \"Error: no test specified\" && exit 1"
811
},

01-contenedores/lemoncode-challenge/dotnet-stack/frontend/views/index.ejs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
<ul class="list-group">
2424
<% topics.forEach(function(topic){ %>
2525
<li class="list-group-item">
26-
<%- topic.topicName %>
26+
<%- topic.Name %>
2727
</li>
2828
<%});%>
2929
</ul>

01-contenedores/lemoncode-challenge/node-stack/backend/.devcontainer/docker-compose.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
version: '3.8'
2-
31
services:
42
app:
53
build:
@@ -9,7 +7,7 @@ services:
97
# Update 'VARIANT' to pick an LTS version of Node.js: 18, 16, 14.
108
# Append -bullseye or -buster to pin to an OS version.
119
# Use -bullseye variants on local arm64/Apple Silicon.
12-
VARIANT: 16-bullseye
10+
VARIANT: 22-bullseye
1311
volumes:
1412
- ..:/workspace:cached
1513

0 commit comments

Comments
 (0)