Skip to content

Commit

Permalink
Merge branch 'cleanup' of https://github.com/socfortress/CoPilot into…
Browse files Browse the repository at this point in the history
… cleanup
  • Loading branch information
taylorwalton committed Sep 2, 2024
2 parents a9572b2 + 7fb28de commit b53f77a
Show file tree
Hide file tree
Showing 27 changed files with 869 additions and 448 deletions.
134 changes: 71 additions & 63 deletions frontend/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

24 changes: 12 additions & 12 deletions frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,11 @@
"@fontsource/lexend": "^5.0.21",
"@fontsource/public-sans": "^5.0.18",
"@popperjs/core": "^2.11.8",
"@shikijs/markdown-it": "^1.14.1",
"@shikijs/markdown-it": "^1.16.1",
"@vueuse/components": "^11.0.3",
"@vueuse/core": "^11.0.3",
"apexcharts": "^3.52.0",
"axios": "^1.7.5",
"apexcharts": "^3.53.0",
"axios": "^1.7.7",
"bytes": "^3.1.2",
"colord": "^2.9.3",
"crypto-js": "^4.2.0",
Expand All @@ -58,16 +58,16 @@
"pinia": "^2.2.2",
"pinia-plugin-persistedstate": "^3.2.3",
"secure-ls": "^2.0.0",
"shiki": "^1.14.1",
"shiki": "^1.16.1",
"validator": "^13.12.0",
"vue": "^3.4.38",
"vue-advanced-cropper": "^2.8.9",
"vue-highlight-words": "^3.0.1",
"vue-i18n": "^9.14.0",
"vue-router": "^4.4.3",
"vue-sjv": "^0.0.6",
"vue3-apexcharts": "^1.5.3",
"vue3-marquee": "^4.2.1",
"vue3-apexcharts": "^1.6.0",
"vue3-marquee": "^4.2.2",
"vuedraggable": "^4.1.0"
},
"devDependencies": {
Expand All @@ -80,16 +80,16 @@
"@types/inquirer": "^9.0.7",
"@types/jsdom": "^21.1.7",
"@types/lodash": "^4.17.7",
"@types/node": "^22.5.1",
"@types/node": "^22.5.2",
"@types/validator": "^13.12.1",
"@vitejs/plugin-vue": "^5.1.2",
"@vitejs/plugin-vue": "^5.1.3",
"@vitejs/plugin-vue-jsx": "^4.0.1",
"@vue/eslint-config-prettier": "^9.0.0",
"@vue/eslint-config-typescript": "^13.0.0",
"@vue/test-utils": "^2.4.6",
"@vue/tsconfig": "^0.5.1",
"autoprefixer": "^10.4.20",
"cypress": "^13.14.0",
"cypress": "^13.14.1",
"eslint": "^9.9.1",
"eslint-plugin-cypress": "^3.5.0",
"eslint-plugin-vue": "^9.27.0",
Expand All @@ -100,7 +100,7 @@
"json5": "^2.2.3",
"npm-run-all2": "^6.2.2",
"picocolors": "^1.0.1",
"postcss": "^8.4.41",
"postcss": "^8.4.43",
"prettier": "^3.3.3",
"sass": "^1.77.8",
"start-server-and-test": "^2.0.5",
Expand All @@ -115,10 +115,10 @@
"vite-plugin-vue-devtools": "^7.3.9",
"vite-svg-loader": "^5.1.0",
"vitest": "^2.0.5",
"vue-tsc": "^2.1.2"
"vue-tsc": "^2.1.5"
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "^4.21.1"
"@rollup/rollup-linux-x64-gnu": "^4.21.2"
},
"overrides": {
"@vue/eslint-config-typescript": {
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/api/endpoints/soc.ts
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ export default {
time_unit: payload?.unit || "days"
}
/*eslint no-mixed-spaces-and-tabs: "off"*/
}
}
: undefined
)
},
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/components/agents/agentFlow/AgentFlowItem.vue
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@
<div class="grid gap-2 grid-auto-fit-200 p-7 pt-4" v-if="properties">
<KVCard v-for="(value, key) of properties" :key="key">
<template #key>{{ key }}</template>
<template #value>{{ value === "" ? "-" : value ?? "-" }}</template>
<template #value>{{ value === "" ? "-" : (value ?? "-") }}</template>
</KVCard>
</div>
</n-tab-pane>
Expand Down
Loading

0 comments on commit b53f77a

Please sign in to comment.