Skip to content

Commit

Permalink
0.29.2 (#435)
Browse files Browse the repository at this point in the history
* Feature/404_adrescrab_land_onwijzigbaar (#405)

* #404 added extra countryId property to config

* #404 oneliner things

* juiste actoren urls gebruiken (#433)

* prepare release 0.29.2

---------

Co-authored-by: AxelVerstappen <[email protected]>
  • Loading branch information
pegahmoh and AxelVerstappen authored Aug 14, 2024
1 parent 0e07eb6 commit 46e4c74
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion dist/commonjs/actor-widget/actor-widget.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/commonjs/actor-widget/actor-widget.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/commonjs/actor-widget/actor-widget.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/native-modules/actor-widget/actor-widget.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/native-modules/actor-widget/actor-widget.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/native-modules/actor-widget/actor-widget.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "oerelia",
"description": "Onroerend Erfgoed Aurelia component library",
"version": "0.29.1",
"version": "0.29.2",
"repository": {
"type": "git",
"url": "https://github.com/OnroerendErfgoed/oerelia.git"
Expand Down
2 changes: 1 addition & 1 deletion src/actor-widget/actor-widget.html
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,7 @@ <h3>Actor toevoegen</h3>
<!-- Create actor -->
<div class="actor-action">
<a class="actor-toevoegen" target="_blank"
href="${scope.actorenApiService.config.actorenUrl}/beheer#/actoren/aanmaken">
href="${scope.actorenApiService.config.actorenUrl}/beheer/0">
Actor aanmaken
<i class="fa fa-plus-circle"></i>
</a>
Expand Down
2 changes: 1 addition & 1 deletion src/actor-widget/actor-widget.ts
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ export class ActorWidget {
const edit = document.createElement('a');
edit.className = 'fa fa-pencil';
edit.setAttribute('title', 'Actor editeren');
edit.href = `${params.context.actorenApiService.config.actorenUrl}/beheer#/actoren/${params.data.id}`;
edit.href = `${params.context.actorenApiService.config.actorenUrl}/beheer/${params.data.id}`;
edit.target = '_blank';
container.appendChild(edit);

Expand Down

0 comments on commit 46e4c74

Please sign in to comment.