Show cancel button next to submit button in user invite modal

This commit is contained in:
Bjarne Fyrstenborg
2023-11-08 19:13:45 +01:00
parent 27dfe0e2ce
commit 06b9dc09f5
2 changed files with 8 additions and 6 deletions

View File

@@ -87,13 +87,15 @@ export class UmbUserCreateSuccessModalElement extends UmbModalBaseElement<
@click=${this.#onCreateAnotherUser}
slot="actions"
label="Create another user"
look="secondary"></uui-button>
look="secondary">
</uui-button>
<uui-button
@click=${this.#onGoToProfile}
slot="actions"
label="Go to profile"
look="primary"
color="positive"></uui-button>
color="positive">
</uui-button>
</uui-dialog-layout>`;
}

View File

@@ -117,7 +117,6 @@ export class UmbUserInviteModalElement extends UmbModalBaseElement {
? html`
<uui-button
@click=${this._closeModal}
style="margin-right: auto"
slot="actions"
label="Close"
look="secondary"></uui-button>
@@ -131,16 +130,17 @@ export class UmbUserInviteModalElement extends UmbModalBaseElement {
: html`
<uui-button
@click=${this._closeModal}
style="margin-right: auto"
slot="actions"
label="Cancel"
look="secondary"></uui-button>
look="secondary">
</uui-button>
<uui-button
@click="${this._submitForm}"
slot="actions"
type="submit"
label="Send invite"
look="primary"></uui-button>
look="primary">
</uui-button>
`}
</uui-dialog-layout>`;
}