Skip to content

Commit

Permalink
chore(pdf): configuration carousel to select
Browse files Browse the repository at this point in the history
  • Loading branch information
Novout committed Nov 9, 2021
1 parent 2fa9dfe commit 303dbbd
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions src/components/editor/pdf/set/PDFConfigurationSetBase.vue
Original file line number Diff line number Diff line change
Expand Up @@ -82,9 +82,16 @@
<label>{{ t('editor.pdf.base.footer.start') }}</label>
<InputNumber v-model="pdf.base.footer.start" />
</section>
<section :class="[!pdf.switcher.footer ? 'wb-disabled' : '']">
<label>{{ t('editor.pdf.base.footer.type') }}</label>
<InputSelect
v-model="pdf.base.footer.textType"
:arr="['simple', 'counter']"
/>
</section>
<section :class="[!pdf.switcher.footer ? 'wb-disabled' : '']">
<label>{{ t('editor.pdf.base.footer.alignment') }}</label>
<InputCarousel
<InputSelect
v-model="pdf.base.footer.alignment"
:arr="['default', 'left', 'center', 'right']"
/>
Expand All @@ -93,13 +100,6 @@
<label>{{ t('editor.pdf.base.footer.size') }}</label>
<InputNumber v-model="pdf.base.footer.textSize" />
</section>
<section :class="[!pdf.switcher.footer ? 'wb-disabled' : '']">
<label>{{ t('editor.pdf.base.footer.type') }}</label>
<InputCarousel
v-model="pdf.base.footer.textType"
:arr="['simple', 'counter']"
/>
</section>
</section>
</div>
</div>
Expand Down

0 comments on commit 303dbbd

Please sign in to comment.