fix: #234 フィールドに値を挿入するコンポーネントのinsert-value.tsのコメントの修正

This commit is contained in:
Moriyukina2
2024-06-11 13:58:19 +09:00
parent c225ddd39d
commit 3c0d572a0e

View File

@@ -356,10 +356,10 @@ export class InsertValueAction implements IAction{
let correctFormattedValue; let correctFormattedValue;
//入力値チェック後、形式変換、型変換した値を格納する配列 //入力値チェック後、形式変換、型変換した値を格納する配列
let correctValues :string[] = []; let correctValues :string[] = [];
//空白文字チェックの結果が負の場合、true //入力エラー(空白文字の混入)がないことをチェック
let notInputError=this.checkInputBlank(fieldType,fieldValue,fieldCode,fieldRequired,event); let notInputError=this.checkInputBlank(fieldType,fieldValue,fieldCode,fieldRequired,event);
//条件式の結果がtrue、空白文字チェックでエラーがない場合、挿入する値をフィールドタイプ別にチェックする //条件式の結果がtrue、入力エラー(空白文字の混入)がない場合、挿入する値をフィールドタイプ別にチェックする
if(conditionResult && notInputError){ if(conditionResult && notInputError){
//文字列型のフィールドに挿入しようとしている値が適切の場合、correctFormattedValueに代入する //文字列型のフィールドに挿入しようとしている値が適切の場合、correctFormattedValueに代入する