Skip to content

Commit ec8ea95

Browse files
authored
fix consent sidebar ui & add EMAIL FETCHING for dev env (#2462)
* Update MiningConsentSidebar.vue * Update .env.master.dev
1 parent d0c7c18 commit ec8ea95

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

.env.master.dev

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -136,3 +136,7 @@ THEDIG_API_KEY = _
136136
#ENRICH LAYER
137137
ENRICH_LAYER_URL = https://enrichlayer.com/
138138
ENRICH_LAYER_API_KEY = _
139+
140+
#EMAIL FETCHING SERVICE
141+
EMAIL_FETCHING_SERVICE_URL = http://localhost:8083
142+
EMAIL_FETCHING_SERVICE_API_TOKEN = test-key

frontend/src/components/Mining/MiningConsentSidebar.vue

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
:show-close-icon="false"
88
:block-scroll="true"
99
:header="t('authorization_required')"
10-
pt:footer:class="pt-0 flex justify-end gap-2"
11-
pt:content:class="grid gap-4 px-8 pt-4 text-base"
10+
pt:content:class="grid gap-4 px-8 text-base pb-0"
11+
pt:footer:class="flex justify-end gap-2"
1212
>
1313
<span>
1414
{{ t('authorization_declined') }}
@@ -59,6 +59,7 @@ function showImapDialog() {
5959
$imapDialogStore.showImapDialog = true;
6060
close();
6161
}
62+
6263
function refreshOAuth() {
6364
if (provider.value === 'imap') {
6465
showImapDialog();

0 commit comments

Comments
 (0)