aboutsummaryrefslogtreecommitdiff
path: root/extension/src/entries/options/App.vue
diff options
context:
space:
mode:
authorLibravatar vnugent <public@vaughnnugent.com>2024-01-07 20:39:18 -0500
committerLibravatar vnugent <public@vaughnnugent.com>2024-01-07 20:39:18 -0500
commitc438ee90e3be4e5e01ae3d045d6b841a03bd46eb (patch)
tree41c0b2ee815ce979e2af0e79f8fde9b58f5f4627 /extension/src/entries/options/App.vue
parente87c4b69036e32b4fcf3df89e8158fb52df6a4e0 (diff)
losts of package updates & permissionsHEADmaster
Diffstat (limited to 'extension/src/entries/options/App.vue')
-rw-r--r--extension/src/entries/options/App.vue26
1 files changed, 16 insertions, 10 deletions
diff --git a/extension/src/entries/options/App.vue b/extension/src/entries/options/App.vue
index d1da48e..3dbe94d 100644
--- a/extension/src/entries/options/App.vue
+++ b/extension/src/entries/options/App.vue
@@ -26,6 +26,11 @@
</Tab>
<Tab v-slot="{ selected }">
<button class="tab-title" :class="{ selected }">
+ Activity
+ </button>
+ </Tab>
+ <Tab v-slot="{ selected }">
+ <button class="tab-title" :class="{ selected }">
Privacy
</button>
</Tab>
@@ -64,15 +69,15 @@
<TabPanel class="mt-4">
<Identities :all-keys="allKeys" @edit-key="editKey"/>
</TabPanel>
- <TabPanel>
- <Account/>
- </TabPanel>
- <TabPanel>
- <Privacy/>
- </TabPanel>
- <TabPanel>
- <SiteSettings/>
- </TabPanel>
+
+ <TabPanel> <Account/> </TabPanel>
+
+ <TabPanel> <EventHistory/> </TabPanel>
+
+ <TabPanel> <Privacy/> </TabPanel>
+
+ <TabPanel> <SiteSettings/> </TabPanel>
+
<TabPanel>
<div class="flex flex-col px-2 mt-4">
<div class="absolute mx-auto">
@@ -130,6 +135,7 @@ import { useStore } from "../store";
import Account from "./components/Account.vue";
import ConfirmPrompt from "../../components/ConfirmPrompt.vue";
import PasswordPrompt from "../../components/PasswordPrompt.vue";
+import EventHistory from "./components/EventHistory.vue";
//Configure the notifier to use the notification library
@@ -143,7 +149,7 @@ const keyBuffer = ref<NostrPubKey>({} as NostrPubKey)
const editKey = (key: NostrPubKey) =>{
//Goto hidden tab
- selectedTab.value = 4
+ selectedTab.value = 5
//Set selected key
keyBuffer.value = { ...key }
}