Skip to content

Commit

Permalink
fix missing layout on topic update
Browse files Browse the repository at this point in the history
  • Loading branch information
Kurtil authored Jul 18, 2024
1 parent 8666c72 commit 79e2661
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/bcf-topic-form/BcfTopicForm.vue
Original file line number Diff line number Diff line change
Expand Up @@ -454,7 +454,7 @@ export default {
due_date: topicDueDate.value,
description: topicDescription.value,
labels: topicLabels.value,
bimdata_viewer_layout: viewpointsToCreate.value.length > 1 && viewerLayout ? viewerLayout : null,
bimdata_viewer_layout: viewpointsToCreate.value.length > 1 && viewerLayout ? viewerLayout : props.topic?.bimdata_viewer_layout,
};
let newTopic;
Expand Down

0 comments on commit 79e2661

Please sign in to comment.