Skip to content

Commit

Permalink
remove Import Analysis button
Browse files Browse the repository at this point in the history
  • Loading branch information
fariss committed Aug 9, 2024
1 parent 2098d04 commit 6512282
Showing 1 changed file with 1 addition and 10 deletions.
11 changes: 1 addition & 10 deletions web/explorer/src/components/NavBar.vue
Original file line number Diff line number Diff line change
@@ -1,19 +1,10 @@
<script setup>
import { ref } from "vue";

Check failure on line 2 in web/explorer/src/components/NavBar.vue

View workflow job for this annotation

GitHub Actions / test

'ref' is defined but never used
import Menubar from "primevue/menubar";
const items = ref([
{
label: "Import Analysis",
icon: "pi pi-file-import",
command: () => (window.location.href = window.location.origin + "/capa/")
}
]);
</script>

<template>
<Menubar :model="items" class="p-1">
<Menubar class="p-1">
<template #end>
<div class="flex align-items-center gap-3">
<a
Expand Down

0 comments on commit 6512282

Please sign in to comment.