mirror of
https://gitlab.com/bramw/baserow.git
synced 2025-04-04 05:05:24 +00:00
Fix webhook isDeactivated workspace check
This commit is contained in:
parent
bd82d62b45
commit
e9df6f5f15
1 changed files with 8 additions and 5 deletions
|
@ -114,14 +114,14 @@
|
|||
v-for="webhookEvent in webhookEventTypes"
|
||||
:key="webhookEvent.type"
|
||||
v-tooltip="
|
||||
webhookEvent.isDeactivated()
|
||||
webhookEvent.isDeactivated(database.workspace.id)
|
||||
? webhookEvent.getDeactivatedText()
|
||||
: null
|
||||
"
|
||||
class="webhook__type"
|
||||
tooltip-position="bottom-cursor"
|
||||
@mousedown="
|
||||
webhookEvent.isDeactivated() &&
|
||||
webhookEvent.isDeactivated(database.workspace.id) &&
|
||||
!values.events.includes(webhookEvent.type) &&
|
||||
$refs[`${webhookEvent.getName()}DeactivatedClickModal`][0].show()
|
||||
"
|
||||
|
@ -130,12 +130,15 @@
|
|||
:checked="values.events.includes(webhookEvent.type)"
|
||||
:disabled="
|
||||
!values.events.includes(webhookEvent.type) &&
|
||||
webhookEvent.isDeactivated()
|
||||
webhookEvent.isDeactivated(database.workspace.id)
|
||||
"
|
||||
@input="toggleEventType(webhookEvent, $event)"
|
||||
>
|
||||
{{ webhookEvent.getName() }}
|
||||
<div v-if="webhookEvent.isDeactivated()" class="deactivated-label">
|
||||
<div
|
||||
v-if="webhookEvent.isDeactivated(database.workspace.id)"
|
||||
class="deactivated-label"
|
||||
>
|
||||
<i class="iconoir-lock"></i>
|
||||
</div>
|
||||
</Checkbox>
|
||||
|
@ -200,7 +203,7 @@
|
|||
</div>
|
||||
<component
|
||||
:is="webhookEvent.getDeactivatedClickModal()"
|
||||
v-if="webhookEvent.isDeactivated()"
|
||||
v-if="webhookEvent.isDeactivated(database.workspace.id)"
|
||||
:ref="`${webhookEvent.getName()}DeactivatedClickModal`"
|
||||
:workspace="database.workspace"
|
||||
:name="webhookEvent.getFeatureName()"
|
||||
|
|
Loading…
Add table
Reference in a new issue