diff --git a/plugins/tracker-resources/src/components/issues/edit/EditIssue.svelte b/plugins/tracker-resources/src/components/issues/edit/EditIssue.svelte index 7af383e574..ea31980170 100644 --- a/plugins/tracker-resources/src/components/issues/edit/EditIssue.svelte +++ b/plugins/tracker-resources/src/components/issues/edit/EditIssue.svelte @@ -87,9 +87,11 @@ await save() } ;[issue] = result - title = issue.title - description = issue.description - currentProject = issue.$lookup?.space + if (issue) { + title = issue.title + description = issue.description + currentProject = issue.$lookup?.space + } }, { lookup: { attachedTo: tracker.class.Issue, space: tracker.class.Project } } ) diff --git a/plugins/view-resources/src/components/UpDownNavigator.svelte b/plugins/view-resources/src/components/UpDownNavigator.svelte index 250ecddee6..9505db94d0 100644 --- a/plugins/view-resources/src/components/UpDownNavigator.svelte +++ b/plugins/view-resources/src/components/UpDownNavigator.svelte @@ -1,17 +1,10 @@ -