mirror of
https://github.com/a-nyx/maputnik-with-pmtiles.git
synced 2024-11-10 08:57:46 +01:00
Fixed image/video coord labels.
This commit is contained in:
parent
33e04b3527
commit
096e2b6aec
1 changed files with 2 additions and 2 deletions
|
@ -117,7 +117,7 @@ class ImageSourceEditor extends React.Component {
|
|||
})}
|
||||
/>
|
||||
</InputBlock>
|
||||
{["top", "left", "bottom", "right"].map((label, idx) => {
|
||||
{["top left", "top right", "bottom right", "bottom left"].map((label, idx) => {
|
||||
return (
|
||||
<InputBlock label={`Coord ${label}`} key={label}>
|
||||
<ArrayInput
|
||||
|
@ -167,7 +167,7 @@ class VideoSourceEditor extends React.Component {
|
|||
onChange={changeUrls}
|
||||
/>
|
||||
</InputBlock>
|
||||
{["top", "left", "bottom", "right"].map((label, idx) => {
|
||||
{["top left", "top right", "bottom right", "bottom left"].map((label, idx) => {
|
||||
return (
|
||||
<InputBlock label={`Coord ${label}`} key={label}>
|
||||
<ArrayInput
|
||||
|
|
Loading…
Reference in a new issue