Skip to content

Commit

Permalink
Next
Browse files Browse the repository at this point in the history
  • Loading branch information
gboege committed Apr 21, 2024
1 parent 408399f commit db645cf
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions public/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -71,15 +71,16 @@ body {

}

#my-header-h2 {
h2#my-header-h2 {
color: #000;
text-align: center;
vertical-align: middle;
text-decoration: none;
margin: 0px;
background-color: #1ED760;
}

#my-header-div {
div#my-header-div {
background-color: #1ED760;
}

Expand Down
2 changes: 1 addition & 1 deletion server.js
Original file line number Diff line number Diff line change
Expand Up @@ -697,7 +697,7 @@ app.post('/portal', async (req, res) => {
for (var key in entity_keys) {
let attribute = {
attribute_name: key,
attribute_value: entity[key].value
attribute_value: toString(entity[key])
}
}
entity_attributes = Object.entries(entity)
Expand Down

0 comments on commit db645cf

Please sign in to comment.