Skip to content

Commit

Permalink
Merge pull request #116 from yatt-ai/ok/clearing-things
Browse files Browse the repository at this point in the history
clearing console.logs and unused lines
  • Loading branch information
dacoaster authored Jan 18, 2024
2 parents 2619d7d + f7acd48 commit b651376
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 8 deletions.
6 changes: 0 additions & 6 deletions src/components/TimelineWrapper.vue
Original file line number Diff line number Diff line change
Expand Up @@ -1078,7 +1078,6 @@ export default {
filePath: item.filePath,
timer_mark: this.$store.state.timer,
};
// await this.openEditorModal(data);
this.evidenceData = data;
this.addEvidenceDialog = true;
}
Expand Down Expand Up @@ -1135,13 +1134,8 @@ export default {
this.saveData();
},
async handleActiveSession(id) {
console.log("handleActiveSession", { id });
this.itemToEdit = await this.$storageService.getItemById(id);
console.log("item to edit", this.itemToEdit);
this.editEvidenceDialog = true;
// this.activeSession = await this.$storageService.getItemById(id);
// this.$emit("submit-session", this.activeSession);
},
async dragItem(event, item) {
event.preventDefault();
Expand Down
1 change: 0 additions & 1 deletion src/modules/DatabaseUtility.js
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,6 @@ const removeItemById = (id) => {

const getItemById = (id) => {
const data = dataDb.get("items");
console.log({ dataDb });
const item = data.find((item) => item.id === id);

return item;
Expand Down
1 change: 0 additions & 1 deletion src/views/MainView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,6 @@ export default {
mounted() {
this.setInitialPreSession();
this.setInitialPostSession();
// this.fetchItems();
this.$root.$on("update-selected", this.updateSelected);
this.$root.$on("save-session", this.saveSession);
this.$root.$on("new-session", () => {
Expand Down

0 comments on commit b651376

Please sign in to comment.