Bugs found by CI/CD.

This commit is contained in:
Ken Sternberg 2023-08-03 15:39:01 -07:00
parent 46926d54ca
commit 134c6976fa
2 changed files with 4 additions and 4 deletions

View File

@ -43,7 +43,7 @@ const container = (testItem: TemplateResult) => {
${testItem}
<ul id="toggle-message-pad" style="margin-top: 1em"></ul>
</div>`;
}
};
const testOptions = [
["funky", "Option One: The Funky One"],
@ -55,13 +55,13 @@ export const ToggleGroup = () => {
// eslint-disable-next-line @typescript-eslint/no-explicit-any
const displayChange = (ev: any) => {
document.getElementById(
"toggle-message-pad"
"toggle-message-pad",
)!.innerText = `Value selected: ${ev.detail.value}`;
};
return container(
html`<ak-toggle-group @ak-toggle=${displayChange}>
${testOptions.map(([key, label]) => html`<option value="${key}">${label}</option>`)}
</ak-toggle-group>`
</ak-toggle-group>`,
);
};

View File

@ -8,7 +8,7 @@ The most common types are:
- [**Procedural**](./procedural.md): these are How To docs, the HOW information, with step-by-step instructions for accomplishing a task. This is what most people are looking for when they open the docs... and best practice is to separate the procedural docs from long, lengthy conceptual or reference docs.
- **Conceptual**: these docs provide the WHY information, and explain when to use a feature (or when not to!), and general concepts behind the fature or functioanlity.
- **Conceptual**: these docs provide the WHY information, and explain when to use a feature (or when not to!), and general concepts behind the feature or functioanlity.
- **Reference**: this is typically tables or lists of reference information, such as configuration values, or most commmonly APIs.