mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-07 18:44:08 +00:00
Signature: action buttons positions
This commit is contained in:
parent
8a374864fa
commit
f8d95384ea
@ -85,8 +85,10 @@
|
||||
>
|
||||
{{ $t("sign") }}
|
||||
</button>
|
||||
</div>
|
||||
<div class="col-6 d-flex justify-content-end">
|
||||
<button
|
||||
class="btn btn-misc"
|
||||
class="btn btn-misc me-2"
|
||||
:hidden="!userSignatureZones"
|
||||
@click="undoSign"
|
||||
v-if="signature.zones.length > 1"
|
||||
@ -94,16 +96,14 @@
|
||||
{{ $t("choose_another_signature") }}
|
||||
</button>
|
||||
<button
|
||||
class="btn btn-misc"
|
||||
class="btn btn-misc me-2"
|
||||
:hidden="!userSignatureZones"
|
||||
@click="undoSign"
|
||||
v-else
|
||||
>
|
||||
{{ $t("cancel") }}
|
||||
</button>
|
||||
</div>
|
||||
<div class="col-6">
|
||||
<button class="btn float-end btn-delete" @click="undoSign">
|
||||
<button class="btn btn-delete" @click="undoSign">
|
||||
{{ $t("cancel_signing") }}
|
||||
</button>
|
||||
</div>
|
||||
@ -393,7 +393,9 @@ const confirmSign = () => {
|
||||
.catch((error) => {
|
||||
console.log("Error while posting the signature", error);
|
||||
stopTrySigning();
|
||||
$toast.error(`Erreur lors de la soumission de la signature: ${error.txt}`);
|
||||
$toast.error(
|
||||
`Erreur lors de la soumission de la signature: ${error.txt}`
|
||||
);
|
||||
});
|
||||
};
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user