forked from trent_larson/crowd-funder-for-time-pwa
fix: resolve ContactInputForm v-model binding and lint errors
Fix ContactInputForm v-model binding issue that was causing "no contact info" error when adding contacts. The component was using incorrect prop name for v-model. **Changes:** - Update ContactInputForm to use standard `modelValue` prop instead of `input` - Fix v-model binding by using `update:modelValue` event emission - Remove unused `Model` import from vue-facing-decorator - Replace `@ts-ignore` with `@ts-expect-error` in ShareMyContactInfoView **Fixes:** - Contact input field now properly updates parent component state - Eliminates "There was no contact info to add" error when DID is entered - Resolves Vue 3 v-model compatibility issues - Clears remaining lint errors **Testing:** - Contact form should now accept DID input and process it correctly - v-model binding works as expected between ContactInputForm and ContactsView
This commit is contained in:
57
.gitignore
vendored
57
.gitignore
vendored
@@ -56,4 +56,59 @@ icons
|
||||
|
||||
*.log
|
||||
android/app/src/main/res/
|
||||
sql-wasm.wasm
|
||||
sql-wasm.wasm
|
||||
|
||||
# Temporary and generated files
|
||||
temp.*
|
||||
*.tmp
|
||||
*.temp
|
||||
*.bak
|
||||
*.cache
|
||||
git.diff.*
|
||||
*.har
|
||||
|
||||
# Development artifacts
|
||||
dev-dist/
|
||||
*.map
|
||||
|
||||
# OS generated files
|
||||
Thumbs.db
|
||||
ehthumbs.db
|
||||
Desktop.ini
|
||||
|
||||
# Capacitor build outputs and generated files
|
||||
android/app/build/
|
||||
android/capacitor-cordova-android-plugins/build/
|
||||
ios/App/App/public/assets/
|
||||
ios/App/App/build/
|
||||
ios/App/build/
|
||||
|
||||
# Capacitor generated configs (keep source configs)
|
||||
android/app/build/intermediates/assets/debug/mergeDebugAssets/capacitor.*.json
|
||||
android/app/build/intermediates/compressed_assets/debug/compressDebugAssets/out/assets/capacitor.*.json.jar
|
||||
android/app/build/intermediates/merged_java_res/debug/mergeDebugJavaResource/feature-capacitor-cordova-android-plugins.jar
|
||||
android/app/build/outputs/aar/capacitor-cordova-android-plugins-debug.aar
|
||||
|
||||
# Keep these Capacitor files in version control:
|
||||
# - capacitor.config.json (root, electron, ios)
|
||||
# - src/main.capacitor.ts
|
||||
# - vite.config.capacitor.mts
|
||||
# - android/capacitor.settings.gradle
|
||||
# - android/app/capacitor.build.gradle
|
||||
# - android/app/src/main/assets/capacitor.plugins.json
|
||||
|
||||
# Electron build outputs and generated files
|
||||
electron/build/
|
||||
electron/app/
|
||||
electron/dist/
|
||||
electron/out/
|
||||
|
||||
# Keep these Electron files in version control:
|
||||
# - electron/src/preload.ts (source)
|
||||
# - electron/src/index.ts (source)
|
||||
# - electron/src/setup.ts (source)
|
||||
# - electron/package.json
|
||||
# - electron/electron-builder.config.json
|
||||
# - electron/build-packages.sh
|
||||
# - electron/live-runner.js
|
||||
# - electron/resources/electron-publisher-custom.js
|
||||
Reference in New Issue
Block a user