fix: decodeURI() failing on malformated URI + chore(deps): bump

This commit is contained in:
Liyas Thomas
2020-12-29 07:13:46 +05:30
parent 353978f115
commit 9ac0cf1406
5 changed files with 18 additions and 18 deletions

View File

@@ -40,7 +40,7 @@
<input
:placeholder="$t('value_count', { count: index + 1 })"
:name="'value' + index"
:value="decodeURI(param.value)"
:value="decodeURI(encodeURI(param.value))"
@change="
$store.commit('setValueParams', {
index,