@fy-/fws-vue 2.3.81 → 2.3.82

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -31,7 +31,7 @@ interface ConfirmWithInputModalData {
31
31
 
32
32
  const _onConfirm = useDebounceFn(async () => {
33
33
  // If expectedValue is set, validate the input
34
- if (expectedValue.value && inputValue.value !== expectedValue.value) {
34
+ if (expectedValue.value && inputValue.value.toLocaleLowerCase() !== expectedValue.value.toLocaleLowerCase()) {
35
35
  inputError.value = errorMessage.value || 'Incorrect value entered'
36
36
  return
37
37
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fy-/fws-vue",
3
- "version": "2.3.81",
3
+ "version": "2.3.82",
4
4
  "author": "Florian 'Fy' Gasquez <m@fy.to>",
5
5
  "license": "MIT",
6
6
  "homepage": "https://github.com/fy-to/FWJS#readme",