Skip to content

Commit

Permalink
Merge pull request #68 from SpeciesFileGroup/development
Browse files Browse the repository at this point in the history
Development
  • Loading branch information
José Luis Pereira authored and GitHub committed May 9, 2023
2 parents 9c5088c + d1d4682 commit b32e4ac
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
7 changes: 4 additions & 3 deletions src/components/Map/VMap.client.vue
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ L.Icon.Default.mergeOptions({
shadowUrl: shadowUrl
})
const { map_server_tils } = __APP_ENV__
const { map_tile_server, map_tile_attribution } = __APP_ENV__
const props = defineProps({
controls: {
Expand Down Expand Up @@ -101,9 +101,10 @@ let geoJSONGroup
const leafletMap = ref(null)
const tiles = {
osm: L.tileLayer(map_server_tils, {
osm: L.tileLayer(map_tile_server, {
maxZoom: 18,
className: 'map-tiles'
className: 'map-tiles',
attribution: map_tile_attribution
})
}
Expand Down
4 changes: 2 additions & 2 deletions src/modules/otus/views/Index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@
<div
class="flex flex-col-reverse md:flex-row justify-between items-start"
>
<VSkeleton class="w-4/4 md:w-3/4">
<VSkeleton class="w-full md:w-3/4">
<Breadcrumb
v-if="isReady"
class="w-4/4 md:w-3/4"
class="w-full md:w-3/4"
:list="otu?.parents || {}"
:current="taxon"
/>
Expand Down

0 comments on commit b32e4ac

Please sign in to comment.