Skip to content
Prev Previous commit
Next Next commit
Update dependencies
  • Loading branch information
saeed-zil committed Apr 11, 2024
commit e1943bb0c442e1278bd8d31bdfaade85cb2fd337
14 changes: 7 additions & 7 deletions products/neo-savant/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@
},
"dependencies": {
"@codemirror/lang-json": "^6.0.1",
"@imengyu/vue3-context-menu": "^1.3.9",
"@imengyu/vue3-context-menu": "^1.4.0",
"@kyvg/vue3-notification": "^3.2.1",
"@ledgerhq/hw-transport-u2f": "^5.34.0",
"@ledgerhq/hw-transport-webusb": "^6.28.5",
"@vitejs/plugin-vue": "^2.3.4",
"@vue/compat": "^3.4.21",
"@vue/compiler-sfc": "^3.2.6",
"@vue/compiler-sfc": "^3.4.21",
"@zilliqa-js/account": "^3.5.0",
"@zilliqa-js/crypto": "^3.5.0",
"@zilliqa-js/util": "^3.5.0",
Expand All @@ -31,17 +31,17 @@
"sweetalert2": "^9.7.2",
"uuid": "^9.0.1",
"vite": "^2.5.4",
"vue": "^3.2.6",
"vue": "^3.4.21",
"vue-codemirror": "^6.1.1",
"vue-color": "^2.8.1",
"vue-json-pretty": "^1.6.3",
"vue-router": "^4.1.2",
"vuex": "^4.0.2",
"vue-router": "^4.3.0",
"vuex": "^4.1.0",
"vuex-persist": "^2.2.0"
},
"devDependencies": {
"eslint": "^6.7.2",
"eslint-plugin-vue": "^7.0.0",
"eslint": "^9.0.0",
"eslint-plugin-vue": "^9.24.1",
"sass": "^1.74.1",
"vite-plugin-node-polyfills": "^0.21.0"
}
Expand Down
2 changes: 1 addition & 1 deletion products/neo-savant/src/components/BottomPanel/Checker.vue
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import {ref, onMounted} from 'vue'
const events = ref([])
onMounted(() => {
window.EventBus.$on("checker-events", ({ warnings, errors }) => {
events = [];
events.value = [];
if (warnings !== undefined) {
warnings.forEach(item => {
this.events.push(item);
Expand Down
Loading