Skip to content

Commit

Permalink
Upgrade axios, clean up code
Browse files Browse the repository at this point in the history
  • Loading branch information
dwalizer committed Sep 24, 2024
1 parent 55dd2cf commit 53a747a
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 6 deletions.
2 changes: 1 addition & 1 deletion frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"@vue/compat": "3.5.6",
"@vue/compiler-sfc": "3.5.6",
"apexcharts": "3.32.0",
"axios": "1.6.0",
"axios": "1.7.4",
"core-js": "3.19.3",
"moment": "2.29.4",
"numeral": "2.0.6",
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/components/StartStressTest.vue
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ See the License for the specific language governing permissions and
limitations under the License.
*/
<script setup>
import { ref, defineProps, defineEmits } from 'vue';
import { ref } from 'vue';
defineProps(['running']);
const emit = defineEmits(['start-test', 'stop-test']);
Expand Down
1 change: 0 additions & 1 deletion frontend/src/components/metrics/SingleStatCard.vue
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ See the License for the specific language governing permissions and
limitations under the License.
*/
<script setup>
import { defineProps } from 'vue';
defineProps(['title', 'value', 'icon']);
</script>
Expand Down
3 changes: 0 additions & 3 deletions frontend/src/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,6 @@
import { createApp } from 'vue';
import App from './App.vue'
import VueApexCharts from 'vue3-apexcharts';
// import './filters/NumberFilter';
// import './filters/DateFilter';
// import './filters/TimePassedFilter';
import router from './router';
import PrimeVue from 'primevue/config';
import Aura from '@primevue/themes/aura';
Expand Down

0 comments on commit 53a747a

Please sign in to comment.