Use true/false value for checkbox value

Because Fluentd's config parser can handle "true/false" and "yes/no" only.

Signed-off-by: Kenji Okimoto <okimoto@clear-code.com>
This commit is contained in:
Kenji Okimoto 2018-10-03 11:03:00 +09:00
parent e9598a6110
commit 832aeaea65
No known key found for this signature in database
GPG Key ID: F9E3E329A5C5E4A1

View File

@ -42,7 +42,7 @@ const actions = {
commit("setRfc5424TimeFormat", event.target.value);
},
updateWithPriority({ commit, state }, event) {
commit("setWithPriority", event.target.value);
commit("setWithPriority", event.target.checked);
}
};