Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
evandor committed Feb 14, 2024
1 parent 950ef89 commit c2746e2
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
6 changes: 4 additions & 2 deletions src/components/helper/SidePanelLoginWidget.vue
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,12 @@
<form>
<div class="row q-ma-xs">
<div class="col-7">
<q-input id="username" outlined type="email" v-model="email" label="Your email address" dense/>
<q-input id="username" outlined type="email" v-model="email" label="Your email address" dense tabindex="1" autofocus/>
</div>
<div class="col-5">
<!-- <q-btn :label="(!email || email.length === 0) ? 'Sign in' : (password.length > 0 ? 'Sign in':'Send Link')"-->
<q-btn label="Sign in"
tabindex="3"
style="width:110px"
:loading="password.length === 0 && loading"
:disable="mailSent"
Expand All @@ -17,10 +18,11 @@
</div>
<div class="row q-ma-xs">
<div class="col-7">
<q-input id="password" outlined type="password" v-model="password" label="Password" dense/>
<q-input id="password" outlined type="password" v-model="password" label="Password" dense tabindex="2"/>
</div>
<div class="col-5">
<q-btn label="Sign Up"
tabindex="4"
style="width:110px"
:loading="password.length > 0 && loading"
:disable="mailSent || password.length === 0"
Expand Down
6 changes: 5 additions & 1 deletion src/pages/sidepanel/SidePanelPageContextMenu.vue
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,11 @@ const startTabsetNote = (tabset: Tabset) => {
NavigationService.openOrCreateTab([url])
}
const openTabsetDescription = (tabset: Tabset) => openURL(chrome.runtime.getURL("/www/index.html#/tabsets/" + tabset.id + "?tab=page"))
// TODO remember for another use case
//const openTabsetDescription = (tabset: Tabset) => openURL(chrome.runtime.getURL("/www/index.html#/tabsets/" + tabset.id + "?tab=page"))
const openTabsetDescription = (tabset: Tabset) => {
}
const openEditTabsetDialog = (tabset: Tabset) => {
$q.dialog({
Expand Down

0 comments on commit c2746e2

Please sign in to comment.