Skip to content

Commit a0f110e

Browse files
committed
Merge branch 'release/1.10.9'
2 parents b1ecf8f + 858db1b commit a0f110e

6 files changed

Lines changed: 14 additions & 6 deletions

File tree

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,5 @@ plugins/gh-datainmap/dist/*
44
!plugins/gh-datainmap/
55
dist/*
66
plugins/gh-datainmap/vendor/*
7-
!plugins/gh-datainmap/vendor/wp-color-picker-alpha/
7+
!plugins/gh-datainmap/vendor/wp-color-picker-alpha/
8+
.DS_Store

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
**1.10.9 (2023-01-03)**
2+
3+
- Als Gutenberg gebruikt werd als editor voor locaties dan werd de kaart om een locatie te selecteren niet weergegeven. Dit is nu opgelost.
4+
15
**1.10.8 (2022-12-27)**
26

37
- De meegeleverde stylesheet geeft de instructietekst (filters, gevonden locaties) niet meer cursief weer voor verbetering toegankelijkheid.

docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ services:
1414
volumes:
1515
- ./plugins/gh-datainmap/:/var/www/html/wp-content/plugins/gh-datainmap
1616
db:
17-
image: mysql:5.7
17+
image: mysql:8
1818
environment:
1919
MYSQL_DATABASE: wordpress
2020
MYSQL_USER: wordpress

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "gh-datainmap",
3-
"version": "1.10.8",
3+
"version": "1.10.9",
44
"description": "",
55
"main": "index.js",
66
"scripts": {

plugins/gh-datainmap/gh-datainmap.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Plugin Name: Data In Map
44
Plugin URI: https://github.com/OpenWebconcept/plugin-datainmap
55
Description: Data In Map is a plugin for displaying maps.
6-
Version: 1.10.8
6+
Version: 1.10.9
77
Requires at least: 5.0
88
Requires PHP: 7.2
99
Author: Gemeente Heerenveen
@@ -26,7 +26,7 @@
2626
*/
2727

2828
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
29-
if ( ! defined('GH_DIM_VERSION')) define('GH_DIM_VERSION', '1.10.8');
29+
if ( ! defined('GH_DIM_VERSION')) define('GH_DIM_VERSION', '1.10.9');
3030
if ( ! defined('GH_DIM_FILE')) define('GH_DIM_FILE', __FILE__);
3131
if ( ! defined('GH_DIM_DIR')) define('GH_DIM_DIR', dirname(__FILE__));
3232
if ( ! defined('GH_DIM_DEBUG')) define('GH_DIM_DEBUG', false);

src/admin-locationpicker.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -253,4 +253,7 @@ const App = () => {
253253
)
254254
};
255255

256-
ReactDOM.render( App(), document.getElementById( settings.element ) );
256+
// Delay rendering to prevent a hidden map with Gutenberg
257+
setTimeout(() => {
258+
ReactDOM.render( App(), document.getElementById( settings.element ) );
259+
}, 50);

0 commit comments

Comments
 (0)