Skip to content

Commit

Permalink
#1732: Fix - Chart widget header style (#1734)
Browse files Browse the repository at this point in the history
* Update mapstore submodule to branch 2024.01.xx (#1712)

* update mapstore submodule to branch 2024.01.xx

* fix ifc lib location

* [Backport] #1710 - Update calls with catalog_list preset (#1711) (#1716)

* #1657 - Add unadvertised identifier to the resource (#1658)

* #1657 - Add unadvertised identifier to the resource

* Code refactor

* [create-pull-request] automated change (#1659)

Co-authored-by: giohappy <[email protected]>

* Update VERSION

* Enable group facets (#1662)

* [create-pull-request] automated change (#1663)

Co-authored-by: dsuren1 <[email protected]>

* [Fixes #1665] Django upgrade to 4.2 LTS (#1664)

* Upgrade Django version

* Upgrade Django version

* Upgrade Django version

* Upgrade to django 4.2

---------

Co-authored-by: mattiagiupponi <[email protected]>

* Bump to 4.4.x dev

* #1678: Enable react-player for audio file resources (#1679)

* [create-pull-request] automated change (#1680)

Co-authored-by: giohappy <[email protected]>

* configure REST API preset for catalog listing (#1709)

* #1710 - Update calls with catalog_list preset (#1711)

* #1710 - Update calls with catalog_list preset

* Update presets and api calls

* Add param serializer

---------

Co-authored-by: geosolutions-pr-generator[bot] <87376048+geosolutions-pr-generator[bot]@users.noreply.github.com>
Co-authored-by: giohappy <[email protected]>
Co-authored-by: Giovanni Allegri <[email protected]>
Co-authored-by: mattiagiupponi <[email protected]>
Co-authored-by: dsuren1 <[email protected]>
Co-authored-by: mattiagiupponi <[email protected]>

* #1720: Improve layer setting visualisation (#1721)

* #1720: Improve layer setting visualisation

* pluginsconfig updated

* #1722: Fix - LayerSettings select dropdown are covered by titles (#1723)

* #1726: Fix - Tile format select input not shown (#1727)

* #1732: Fix - Chart widget header style (#1733)

---------

Co-authored-by: stefano bovio <[email protected]>
Co-authored-by: Suren <[email protected]>
Co-authored-by: geosolutions-pr-generator[bot] <87376048+geosolutions-pr-generator[bot]@users.noreply.github.com>
Co-authored-by: giohappy <[email protected]>
Co-authored-by: mattiagiupponi <[email protected]>
Co-authored-by: dsuren1 <[email protected]>
Co-authored-by: mattiagiupponi <[email protected]>
  • Loading branch information
8 people authored Apr 22, 2024
1 parent 7d3f646 commit 5ba8c2a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ import InfoPopover from '@mapstore/framework/components/widgets/widget/InfoPopov
import { getSupportedFormat } from '@mapstore/framework/api/WMS';
import { getConfigProp } from '@mapstore/framework/utils/ConfigUtils';
import LegendImage from '@mapstore/framework/plugins/TOC/components/Legend';
import { DEFAULT_SUPPORTED_GET_MAP_FORMAT } from '@mapstore/framework/utils/WMSUtils';
import Select from 'react-select';
import GeneralSettings from '@js/plugins/layersettings/GeneralSettings';
import VisibilitySettings from '@js/plugins/layersettings/VisibilitySettings';
Expand Down Expand Up @@ -215,8 +216,8 @@ function WMSLayerSettings({
isLoading={!!formatLoading}
options={formatLoading
? []
: (formats?.map((value) => ({ value, label: value }))
|| imageFormats)}
: (formats ?? imageFormats ?? DEFAULT_SUPPORTED_GET_MAP_FORMAT).map((_format) => _format?.value ? _format : ({ value: _format, label: _format }))
}
value={format}
onChange={({ value }) => onChange({ format: value })}/>
<Button
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -358,7 +358,7 @@ div#mapstore-globalspinner {
}
}
}
.map-widget-view {
.map-widget-view, .chart-widget-view {
.widget-icons, .widget-title {
.em(margin-bottom, 6);
}
Expand Down

0 comments on commit 5ba8c2a

Please sign in to comment.