From d29150628464b6aacc5aa7d12eaf91be9af95fb2 Mon Sep 17 00:00:00 2001 From: Cory LaViska Date: Tue, 6 Dec 2022 14:12:36 -0500 Subject: [PATCH] update docs --- src/components/button/button.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/components/button/button.ts b/src/components/button/button.ts index 314eecedf..0ddf1ab47 100644 --- a/src/components/button/button.ts +++ b/src/components/button/button.ts @@ -97,14 +97,14 @@ export default class SlButton extends ShoelaceElement implements ShoelaceFormCon @property() type: 'button' | 'submit' | 'reset' = 'button'; /** - * The name of the button, submitted as a name/value pair with form data. This attribute is ignored when `href` is - * present. + * The name of the button, submitted as a name/value pair with form data, but only when this button is the submitter. + * This attribute is ignored when `href` is present. */ @property() name = ''; /** - * The value of the button, submitted as a pair with the button's name as part of the form data. This attribute is - * ignored when `href` is present. + * The value of the button, submitted as a pair with the button's name as part of the form data, but only when this + * button is the submitter. This attribute is ignored when `href` is present. */ @property() value = '';