Skip to content

Commit

Permalink
Fix Accordion icon
Browse files Browse the repository at this point in the history
  • Loading branch information
pmoskrojas committed Dec 20, 2023
1 parent 7afa00d commit 2a2feec
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/components/vue-form-builder.vue
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@
]"
:key="elementIndex"
v-b-popover.hover.right="{
content: element.popoverContent,
content: $t(element.popoverContent),
customClass: 'custom-popover'
}"
:boundary="'viewport'"
Expand Down Expand Up @@ -692,7 +692,7 @@ export default {
{ key: "Advanced", label: "Advanced" }
],

isCollapsed: new Array(6).fill(true)
isCollapsed: new Array(7).fill(true)
};
},
computed: {
Expand Down Expand Up @@ -899,7 +899,7 @@ export default {
},
checkForCaptcha(items, insideLoop = false, nestedScreen = null) {
items.forEach((item) => {
if (!item.items && item.component == "Captcha" && insideLoop) {
if (!item.items && item.component === "Captcha" && insideLoop) {
if (nestedScreen && nestedScreen.config.screen) {
this.$root.$emit("remove-nested", nestedScreen.config.screen);
nestedScreen.config.screen = null;
Expand Down

0 comments on commit 2a2feec

Please sign in to comment.