Compare commits
1 Commits
main
...
feat/add-e
| Author | SHA1 | Date |
|---|---|---|
|
|
7bdde9926a |
|
|
@ -121,7 +121,10 @@ function handleBubbleSave() {
|
|||
</script>
|
||||
|
||||
<template>
|
||||
<form @focusout="handleBubbleSave">
|
||||
<form
|
||||
@focusout="handleBubbleSave"
|
||||
@submit.prevent="save"
|
||||
>
|
||||
<FormField
|
||||
id="title"
|
||||
v-model="view.title"
|
||||
|
|
@ -271,7 +274,7 @@ function handleBubbleSave() {
|
|||
</XButton>
|
||||
<XButton
|
||||
:loading="loading"
|
||||
@click="save"
|
||||
type="submit"
|
||||
>
|
||||
{{ $t('misc.save') }}
|
||||
</XButton>
|
||||
|
|
|
|||
|
|
@ -40,6 +40,11 @@
|
|||
:change-immediately="true"
|
||||
/>
|
||||
</FormField>
|
||||
<button
|
||||
type="submit"
|
||||
class="is-hidden"
|
||||
tabindex="-1"
|
||||
/>
|
||||
</form>
|
||||
</CreateEdit>
|
||||
</template>
|
||||
|
|
|
|||
|
|
@ -80,7 +80,7 @@
|
|||
<XButton
|
||||
:loading="loading"
|
||||
class="is-fullwidth"
|
||||
@click="editLabelSubmit()"
|
||||
type="submit"
|
||||
>
|
||||
{{ $t('misc.save') }}
|
||||
</XButton>
|
||||
|
|
|
|||
|
|
@ -41,27 +41,27 @@
|
|||
:placeholder="$t('team.attributes.descriptionPlaceholder')"
|
||||
/>
|
||||
</FormField>
|
||||
</form>
|
||||
|
||||
<div class="field has-addons mbs-4">
|
||||
<div class="control is-fullwidth">
|
||||
<XButton
|
||||
:loading="teamService.loading"
|
||||
class="is-fullwidth"
|
||||
@click="save()"
|
||||
>
|
||||
{{ $t('misc.save') }}
|
||||
</XButton>
|
||||
<div class="field has-addons mbs-4">
|
||||
<div class="control is-fullwidth">
|
||||
<XButton
|
||||
:loading="teamService.loading"
|
||||
class="is-fullwidth"
|
||||
type="submit"
|
||||
>
|
||||
{{ $t('misc.save') }}
|
||||
</XButton>
|
||||
</div>
|
||||
<div class="control">
|
||||
<XButton
|
||||
:loading="teamService.loading"
|
||||
danger
|
||||
icon="trash-alt"
|
||||
@click="showDeleteModal = true"
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
<div class="control">
|
||||
<XButton
|
||||
:loading="teamService.loading"
|
||||
danger
|
||||
icon="trash-alt"
|
||||
@click="showDeleteModal = true"
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
</Card>
|
||||
|
||||
<Card
|
||||
|
|
|
|||
|
|
@ -375,7 +375,7 @@ function toggleGroupPermissionsFromChild(group: string, checked: boolean) {
|
|||
</p>
|
||||
<XButton
|
||||
:loading="service.loading"
|
||||
@click="createToken"
|
||||
type="submit"
|
||||
>
|
||||
{{ $t('user.settings.apiTokens.createToken') }}
|
||||
</XButton>
|
||||
|
|
|
|||
Loading…
Reference in New Issue