Skip to content
This repository has been archived by the owner on Nov 22, 2022. It is now read-only.

Commit

Permalink
Add translations and change input type to range for geometry zoom level
Browse files Browse the repository at this point in the history
  • Loading branch information
Fajfa committed Apr 6, 2022
1 parent 97d1aed commit 98cf01b
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions src/components/ModuleFields/Configurator/Geometry.vue
Original file line number Diff line number Diff line change
@@ -1,14 +1,16 @@
<template>
<div>
<b-form-group>
<label class="d-block">Initial Zoom Level</label>
<b-form-group
:label="$t('kind.geometry.zoomLevel.label')"
>
<b-form-input
v-model="f.options.zoomLevel"
placeholder="Zoom Level"
type="number"
number
type="range"
min="0"
max="18"
/>
{{ f.options.zoomLevel }}
</b-form-group>
</div>
</template>
Expand Down

0 comments on commit 98cf01b

Please sign in to comment.