Merge master
This commit is contained in:
commit
a11e0fc545
57 changed files with 1535 additions and 1381 deletions
|
@ -101,7 +101,7 @@ export default class ScrollableFullScreen extends UIElement {
|
|||
Hash.hash.setData(undefined)
|
||||
})
|
||||
|
||||
title.SetClass("block text-l sm:text-xl md:text-2xl w-full font-bold p-0 max-h-20vh overflow-y-auto")
|
||||
title.SetClass("block text-l sm:text-xl md:text-2xl w-full font-bold p-0 max-h-20vh overflow-y-auto self-center")
|
||||
return new Combine([
|
||||
new Combine([
|
||||
new Combine([returnToTheMap, title])
|
||||
|
|
|
@ -165,7 +165,7 @@ export default class FilterView extends VariableUiElement {
|
|||
}
|
||||
|
||||
return new Combine(toShow)
|
||||
.SetClass("flex flex-col ml-8 bg-gray-300 rounded-xl p-2")
|
||||
.SetClass("flex flex-col p-2 ml-0 pl-12 bg-gray-200 pt-0 border-b-2 border-detail mb-4")
|
||||
|
||||
}
|
||||
|
||||
|
@ -290,6 +290,8 @@ export default class FilterView extends VariableUiElement {
|
|||
return FilterView.createCheckboxFilter(filterConfig)
|
||||
}
|
||||
|
||||
return FilterView.createMultiFilter(filterConfig)
|
||||
const filter = FilterView.createMultiFilter(filterConfig)
|
||||
filter[0].SetClass("pl-2")
|
||||
return filter
|
||||
}
|
||||
}
|
||||
|
|
|
@ -86,6 +86,10 @@ export default class ExportPDF {
|
|||
if (tile.layer.layerDef.minzoom > l.zoom) {
|
||||
return
|
||||
}
|
||||
if(tile.layer.layerDef.id.startsWith("note_import")){
|
||||
// Don't export notes to import
|
||||
return;
|
||||
}
|
||||
new ShowDataLayer(
|
||||
{
|
||||
features: tile,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue