Merge develop
This commit is contained in:
commit
1b8eb10cac
4 changed files with 9 additions and 2 deletions
|
@ -1530,6 +1530,10 @@ input[type="range"].range-lg::-moz-range-thumb {
|
|||
margin-left: 1rem;
|
||||
}
|
||||
|
||||
.mr-3 {
|
||||
margin-right: 0.75rem;
|
||||
}
|
||||
|
||||
.mt-8 {
|
||||
margin-top: 2rem;
|
||||
}
|
||||
|
|
|
@ -926,6 +926,9 @@ export default class TagRenderingConfig {
|
|||
* Might give undefined if setting to unknown is not possible
|
||||
*/
|
||||
public removeToSetUnknown(partOfLayer: LayerConfig, currentTags: Record<string, string>): string[] | undefined {
|
||||
if(!partOfLayer?.source || !currentTags){
|
||||
return
|
||||
}
|
||||
const toDelete = new Set<string>()
|
||||
if (this.freeform) {
|
||||
toDelete.add(this.freeform.key)
|
||||
|
|
|
@ -158,7 +158,7 @@
|
|||
|
||||
<Page {onlyLink} shown={pg.about_theme}>
|
||||
<svelte:fragment slot="link">
|
||||
<Marker size="h-6 w-6 mr-2" icons={layout.icon} />
|
||||
<Marker size="h-7 w-7" icons={layout.icon} />
|
||||
<Tr t={t.showIntroduction} />
|
||||
</svelte:fragment>
|
||||
<svelte:fragment slot="header">
|
||||
|
|
|
@ -546,7 +546,7 @@
|
|||
</Popup>
|
||||
|
||||
<div
|
||||
class="sticky bottom-0 flex justify-between flex-wrap"
|
||||
class="sticky bottom-0 flex justify-between flex-wrap interactive"
|
||||
style="z-index: 11"
|
||||
>
|
||||
|
||||
|
|
Loading…
Reference in a new issue