Skip to content

Commit

Permalink
Merge pull request #911 from oslokommune/fix-owner-arg
Browse files Browse the repository at this point in the history
Fix key result link card `owner` argument type
  • Loading branch information
simenheg authored Nov 7, 2023
2 parents 7ecdf11 + 29870c0 commit b9e4c0c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/panes/ObjectivePane.vue
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@
}"
:title="keyResult.name"
:progression="keyResult.progression"
:owner="keyResult.parent?.name ? keyResult.parent.name : ''"
:owner="keyResult.parent?.name ? keyResult.parent : null"
:active="activeKeyResult && activeKeyResult.id === keyResult.id"
/>
</div>
Expand Down

0 comments on commit b9e4c0c

Please sign in to comment.