From 22a200e2614dd9894fe4138162158070dc4076cf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20B=C3=B6hmer?= Date: Fri, 8 May 2020 13:57:16 +0200 Subject: [PATCH] Use [[PARENT]] instead of [[PARENT_NAME]] placeholder. --- public/ckeditor/plugins/partdb_label/plugin.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/ckeditor/plugins/partdb_label/plugin.js b/public/ckeditor/plugins/partdb_label/plugin.js index fd26bb42..c039fed1 100644 --- a/public/ckeditor/plugins/partdb_label/plugin.js +++ b/public/ckeditor/plugins/partdb_label/plugin.js @@ -63,7 +63,7 @@ const PLACEHOLDERS = { ['[[ID]]', 'storelocation.id'], ['[[NAME]]', 'storelocation.name'], ['[[FULL_PATH]]', 'storelocation.full_path'], - ['[[PARENT_NAME]]', 'storelocation.parent_name'], + ['[[PARENT]]', 'storelocation.parent_name'], ['[[PARENT_FULL_PATH]]', 'storelocation.parent_full_path'], ['[[COMMENT]]', 'storelocation.comment'], ['[[COMMENT_T]]', 'storelocation.comment_t'],