Skip to content

Commit

Permalink
Resolved linting issues that were discovered on push
Browse files Browse the repository at this point in the history
  • Loading branch information
SeriousHorncat committed Oct 31, 2024
1 parent ca9d9cd commit 67565c8
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions frontend/src/stores/analysisStore.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export const analysisStore = reactive({
if (!(header in this.updatedContent)) {
this.updatedContent[header] = {};
}

this.updatedContent[header][field] = value;
},

Expand All @@ -44,10 +44,10 @@ export const analysisStore = reactive({
);

const updated = {
sections: updatedSections
}
sections: updatedSections,
};

this.forceUpdate(updated)
this.forceUpdate(updated);
// this.analysis.sections.splice(0);
// this.analysis.sections.push(...updatedSections);
this.updatedContent = {};
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/views/AnalysisView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ function onAnalysisContentUpdated(contentRow) {
return;
}
analysisStore.addUpdatedContent(contentRow.header, contentRow.field, contentRow.value)
analysisStore.addUpdatedContent(contentRow.header, contentRow.field, contentRow.value);
}
/**
Expand Down

0 comments on commit 67565c8

Please sign in to comment.