Skip to content

Commit

Permalink
Updates from Oct24
Browse files Browse the repository at this point in the history
  • Loading branch information
sneridagh committed Oct 7, 2024
1 parent 10627df commit ed0a86d
Show file tree
Hide file tree
Showing 5 changed files with 1,543 additions and 1,140 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,10 @@ start: ## Starts Volto, allowing reloading of the add-on during development
build: ## Build a production bundle for distribution of the project with the add-on
pnpm build

core/packages/registry/dist: core/packages/registry/src
core/packages/registry/dist: $(shell find core/packages/registry/src -type f)
pnpm --filter @plone/registry build

core/packages/components/dist: core/packages/components/src
core/packages/components/dist: $(shell find core/packages/components/src -type f)
pnpm --filter @plone/components build

.PHONY: build-deps
Expand Down
2 changes: 1 addition & 1 deletion mrs.developer.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"package": "@plone/volto",
"url": "[email protected]:plone/volto.git",
"https": "https://github.com/plone/volto.git",
"tag": "18.0.0-alpha.39"
"tag": "18.0.0-alpha.44"
},
"volto-button-block": {
"develop": false,
Expand Down
6 changes: 3 additions & 3 deletions packages/volto-light-theme/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@
"release-rc": "release-it --preRelease=rc"
},
"devDependencies": {
"@plone/scripts": "^3.6.1",
"release-it": "^17.1.1"
"@plone/scripts": "^3.6.2",
"release-it": "^17.7.0"
},
"dependencies": {
"@plone/components": "workspace:*"
Expand All @@ -47,7 +47,7 @@
"@kitconcept/volto-heading-block": "^2.4.0",
"@kitconcept/volto-highlight-block": "^4.0.0",
"@kitconcept/volto-introduction-block": "^1.0.0",
"@kitconcept/volto-separator-block": "^4.1.1",
"@kitconcept/volto-separator-block": "^4.1.2",
"@kitconcept/volto-slider-block": "^6.3.1"
}
}
4 changes: 3 additions & 1 deletion packages/volto-light-theme/src/components/Header/Header.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,9 @@ const IntranetHeader = ({ pathname, siteLabel, token, siteAction }) => {
{!token && <Anontools />}
{siteAction &&
siteAction.map((item) => (
<UniversalLink href={item.url}>{item.title}</UniversalLink>
<UniversalLink key={item.url} href={item.url}>
{item.title}
</UniversalLink>
))}
</div>
{siteLabel && (
Expand Down
Loading

0 comments on commit ed0a86d

Please sign in to comment.