mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-04-20 06:55:06 -04:00
fix(url-encoder, validation): typo in validation of url-encoder.vue #1024
This commit is contained in:
parent
9eac9cb2a9
commit
cb5b462e11
1 changed files with 1 additions and 1 deletions
|
@ -23,7 +23,7 @@ const decodeInput = ref('Hello%20world%20%3A)');
|
||||||
const decodeOutput = computed(() => withDefaultOnError(() => decodeURIComponent(decodeInput.value), ''));
|
const decodeOutput = computed(() => withDefaultOnError(() => decodeURIComponent(decodeInput.value), ''));
|
||||||
|
|
||||||
const decodeValidation = useValidation({
|
const decodeValidation = useValidation({
|
||||||
source: encodeInput,
|
source: decodeInput,
|
||||||
rules: [
|
rules: [
|
||||||
{
|
{
|
||||||
validator: value => isNotThrowing(() => decodeURIComponent(value)),
|
validator: value => isNotThrowing(() => decodeURIComponent(value)),
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue