This commit is contained in:
JesmoDev
2024-05-02 15:27:43 +02:00
parent 6e647af2ef
commit c805391f99

View File

@@ -70,13 +70,11 @@ export class UmbInputWebhookHeadersElement extends UmbLitElement {
return html`
<input
type="text"
placeholder="Name..."
.value=${header.name}
@input=${(e: InputEvent) => this.#onInput(e, 'name', index)}
list="nameList" />
<input
type="text"
placeholder="Value..."
.value=${header.value}
@input=${(e: InputEvent) => this.#onInput(e, 'value', index)}
list="valueList" />
@@ -136,10 +134,6 @@ export class UmbInputWebhookHeadersElement extends UmbLitElement {
border-radius: var(--uui-border-radius);
}
#add {
grid-column: -1 / 1;
}
#grid > * {
border-right: 1px solid var(--uui-color-border);
border-bottom: 1px solid var(--uui-color-border);