FIX Fixing the clearModificationDate function
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Antoine M 2025-09-24 16:44:17 +02:00
parent 2ee1866afa
commit 4ce40958d6
4 changed files with 4 additions and 4 deletions

View File

@ -1 +1 @@
<?php return array('dependencies' => array('react-jsx-runtime', 'wp-components', 'wp-data', 'wp-date', 'wp-editor', 'wp-element', 'wp-i18n', 'wp-plugins'), 'version' => '7f901f3fab67f3a48996'); <?php return array('dependencies' => array('react-jsx-runtime', 'wp-components', 'wp-data', 'wp-date', 'wp-editor', 'wp-element', 'wp-i18n', 'wp-plugins'), 'version' => '2926f9bf61acc4d0cf7e');

View File

@ -57,7 +57,7 @@ const ModificationDatePanel = () => {
const clearModificationDate = () => { const clearModificationDate = () => {
editPost({ editPost({
meta: { meta: {
modification_date: "" article_modification_date: ""
} }
}); });
}; };

File diff suppressed because one or more lines are too long

View File

@ -29,7 +29,7 @@ const ModificationDatePanel = () => {
const clearModificationDate = () => { const clearModificationDate = () => {
editPost({ editPost({
meta: { meta: {
modification_date: "", article_modification_date: "",
}, },
}); });
}; };