Skip to content

Commit

Permalink
カスタムフィールドのマルチチェックボックスについてプレビューを操作しても初期値に反映できない問題を改善 fix #3125
Browse files Browse the repository at this point in the history
  • Loading branch information
ryuring committed Apr 21, 2024
1 parent e23145a commit 15769c7
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -77,11 +77,17 @@ let vm = new Vue({
/**
* 配列の初期値を取得
*
* @returns {string[]}
* マルチチェックボックスを利用している場合、初期値欄とプレビューの双方向反映のために利用する。
* 利用するには、プレビュー用のテンプレートで、v-model="arrayDefaultValue" を指定する。
*/
arrayDefaultValue: function() {
if(!this.entity.default_value) return;
return this.entity.default_value.replace('\r', '').split("\n");
arrayDefaultValue: {
get: function() {
if(!this.entity.default_value) return[];
return this.entity.default_value.replace('\r', '').split("\n");
},
set: function(value) {
this.entity.default_value = value.join("\n");
}
},

/**
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 15769c7

Please sign in to comment.