Skip to content

Commit

Permalink
docs: Fix wrong close tag in code samples (#811)
Browse files Browse the repository at this point in the history
  • Loading branch information
greystate authored and iOvergaard committed Jun 18, 2024
1 parent bc31088 commit 3cc14e6
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions packages/uui-color-swatch/lib/uui-color-swatch.story.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ export const Selectable: Story = {
parameters: {
docs: {
source: {
code: `<uui-color-swatch selectable></uui-color-slider>`,
code: `<uui-color-swatch selectable></uui-color-swatch>`,
},
},
},
Expand All @@ -57,7 +57,7 @@ export const Disabled: Story = {
parameters: {
docs: {
source: {
code: `<uui-color-swatch disabled></uui-color-slider>`,
code: `<uui-color-swatch disabled></uui-color-swatch>`,
},
},
},
Expand All @@ -72,7 +72,7 @@ export const DisabledSelected: Story = {
parameters: {
docs: {
source: {
code: `<uui-color-swatch disabled selectable selected></uui-color-slider>`,
code: `<uui-color-swatch disabled selectable selected></uui-color-swatch>`,
},
},
},
Expand All @@ -87,7 +87,7 @@ export const WithLabel: Story = {
parameters: {
docs: {
source: {
code: `<uui-color-swatch label="This is the most beautiful color I've ever seen" show-label="true"></uui-color-slider>`,
code: `<uui-color-swatch label="This is the most beautiful color I've ever seen" show-label="true"></uui-color-swatch>`,
},
},
},
Expand All @@ -101,7 +101,7 @@ export const DifferentColorThanValue: Story = {
parameters: {
docs: {
source: {
code: `<uui-color-swatch value="color1" color="green"></uui-color-slider>`,
code: `<uui-color-swatch value="color1" color="green"></uui-color-swatch>`,
},
},
},
Expand All @@ -114,7 +114,7 @@ export const Transparent: Story = {
parameters: {
docs: {
source: {
code: `<uui-color-swatch color="rgba(53, 68, 177, 0.5)"></uui-color-slider>`,
code: `<uui-color-swatch color="rgba(53, 68, 177, 0.5)"></uui-color-swatch>`,
},
},
},
Expand Down

0 comments on commit 3cc14e6

Please sign in to comment.