Skip to content

Commit

Permalink
Fix mistype in Vue3 (#7733)
Browse files Browse the repository at this point in the history
  • Loading branch information
dk981234 authored Jan 25, 2024
1 parent 78f54d1 commit 9eb2455
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/survey-vue3-ui/src/PanelDynamicProgress.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<template>
<div :class="getСssClass()">
<div style="clear: both" :class="getСssClass()">
<div :class="getCssClass()">
<div style="clear: both" :class="getCssClass()">
<div :class="question.cssClasses.progressContainer">
<sv-paneldynamic-prev-btn :data="{ question: question }" />
<div
Expand All @@ -27,7 +27,7 @@ const props = defineProps<{
question: QuestionPanelDynamicModel;
}>();
const getСssClass = () => {
const getCssClass = () => {
return props.question.isProgressTopShowing
? props.question.cssClasses.progressTop
: props.question.cssClasses.progressBottom;
Expand Down

0 comments on commit 9eb2455

Please sign in to comment.