Skip to content

Commit

Permalink
Merge pull request #6192 from lukfd/bugfix/popover-button-basic-doc-fix
Browse files Browse the repository at this point in the history
Fixed Button in the popover basic doc to be consistent in both the demo and the code section
  • Loading branch information
tugcekucukoglu authored Aug 20, 2024
2 parents 79aac25 + b8bb58f commit f1dcbc6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions apps/showcase/doc/popover/BasicDoc.vue
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ export default {
],
code: {
basic: `
<Button type="button" icon="pi pi-image" label="Image" @click="toggle" />
<Button type="button" icon="pi pi-share-alt" label="Share" @click="toggle" />
<Popover ref="op">
<div class="flex flex-col gap-4 w-[25rem]">
Expand Down Expand Up @@ -98,7 +98,7 @@ export default {
options: `
<template>
<div class="card flex justify-center">
<Button type="button" icon="pi pi-image" label="Image" @click="toggle" />
<Button type="button" icon="pi pi-share-alt" label="Share" @click="toggle" />
<Popover ref="op">
<div class="flex flex-col gap-4 w-[25rem]">
Expand Down Expand Up @@ -161,7 +161,7 @@ export default {
composition: `
<template>
<div class="card flex justify-center">
<Button type="button" icon="pi pi-image" label="Image" @click="toggle" />
<Button type="button" icon="pi pi-share-alt" label="Share" @click="toggle" />
<Popover ref="op">
<div class="flex flex-col gap-4 w-[25rem]">
Expand Down

0 comments on commit f1dcbc6

Please sign in to comment.