Skip to content
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: 0 additions & 2 deletions .github/release-drafter.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
name-template: "v$RESOLVED_VERSION"
tag-template: "v$RESOLVED_VERSION"

change-template: "- $TITLE (#$NUMBER) by @$AUTHOR"

template: |
# What's Changed

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@localizesh/processor-json",
"description": "A Localize.sh processor for JSON files.",
"description": "A Localize.sh processor for JSON files",
"repository": "localizesh/processor-json",
"license": "Apache-2.0",
"author": "Localize.sh",
Expand Down
4 changes: 2 additions & 2 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -93,12 +93,12 @@ export default class JsonProcessor extends Processor {

const segmentNode = segment(id);

return element("tr", [element("td", key), element("td", [segmentNode])]);
return element("tr", element("td", key), element("td", segmentNode));
});

// Use hastscript to build the table
// layout must be LayoutRoot (which extends HastRoot)
const table = element("table", [element("tbody", rows)]);
const table = element("table", element("tbody", rows));

const layout: LayoutRoot = root([table]);

Expand Down
Loading