Open
Description
I think this issue originates from StacFields.formatItemProperties()
. The data comes back from stac-fields
with <ul><li></li>...etc
attached.
It ends up not very easy to read for those locations with negative latitudes/longitudes (granted, I'm not sure how many people will be reading footprint or bounding box...). I was able to remove the dashes with the below css but wanted to bring it up here for further discussion.
.metadata {
ul {
li {
list-style-type: none !important;
}
}
}