Skip to content

Commit d9f66ec

Browse files
committed
feat(ui): enable jira connect and update the warning message
1 parent 693df43 commit d9f66ec

File tree

2 files changed

+11
-16
lines changed

2 files changed

+11
-16
lines changed

frontend/src/config/integrations/jira/components/jira-connect.vue

+7-12
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,14 @@
11
<template>
2-
<lf-tooltip
3-
placement="top"
4-
content-class="!max-w-76 !p-3 !text-start"
5-
content="These integrations are temporarily disabled. Please contact the CM team for further questions."
6-
>
7-
<lf-button
8-
:disabled="true"
9-
type="secondary"
10-
@click="isJiraSettingsDrawerVisible = true"
11-
>
2+
<div class="flex items-center gap-4">
3+
<!-- <lf-button type="secondary-ghost" @click="isDetailsModalOpen = true">-->
4+
<!-- <lf-icon name="circle-info" type="regular" />-->
5+
<!-- Details-->
6+
<!-- </lf-button>-->
7+
<lf-button type="secondary" @click="isJiraSettingsDrawerVisible = true">
128
<lf-icon name="link-simple" />
139
<slot>Connect</slot>
1410
</lf-button>
15-
</lf-tooltip>
11+
</div>
1612
<lf-jira-settings-drawer
1713
v-if="isJiraSettingsDrawerVisible"
1814
v-model="isJiraSettingsDrawerVisible"
@@ -26,7 +22,6 @@
2622
import { defineProps, ref } from 'vue';
2723
import LfIcon from '@/ui-kit/icon/Icon.vue';
2824
import LfButton from '@/ui-kit/button/Button.vue';
29-
import LfTooltip from '@/ui-kit/tooltip/Tooltip.vue';
3025
import LfJiraSettingsDrawer from '@/config/integrations/jira/components/jira-settings-drawer.vue';
3126
3227
const props = defineProps<{

frontend/src/modules/lf/layout/components/lf-banners.vue

+4-4
Original file line numberDiff line numberDiff line change
@@ -127,16 +127,16 @@
127127
</router-link>
128128
</div>
129129
</banner>
130-
<!-- TODO: Remove this banner once Jira and Confluence integrations are back up -->
130+
<!-- TODO: Remove this banner once Confluence integrations is back up -->
131131
<banner
132132
variant="alert"
133133
>
134134
<div
135135
class="flex flex-wrap items-center justify-center grow text-sm py-2"
136136
>
137-
<span class="font-semibold">Temporary Disruption of Confluence and Jira Integrations</span>
138-
<span>&nbsp;Confluence and Jira integrations are currently stopped.
139-
The team is actively working on bringing the integrations back and restore full functionality.</span>
137+
<span class="font-semibold">Temporary Disruption of Confluence Integration</span>
138+
<span>&nbsp;Confluence integration is currently stopped.
139+
The team is actively working on bringing the integration back and restore full functionality.</span>
140140
</div>
141141
</banner>
142142
</div>

0 commit comments

Comments
 (0)