@mythpe/quasar-ui-qui 0.1.46 → 0.1.47

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mythpe/quasar-ui-qui",
3
- "version": "0.1.46",
3
+ "version": "0.1.47",
4
4
  "description": "MyTh Quasar UI Kit App Extension",
5
5
  "author": {
6
6
  "name": "MyTh Ahmed Faiz",
@@ -92,7 +92,7 @@ export const useBindInput = <P extends G = G> (Props: MaybeRefOrGetter<P>, key:
92
92
  if (name && name.indexOf('.*.')) {
93
93
  name = name.split('.').pop() || nameLabel.value
94
94
  }
95
- return __(`replace.${replace.value}`, { name: __(name) })
95
+ return name ? __(`replace.${replace.value}`, { name: __(name) }) : undefined
96
96
  }
97
97
  return props.placeholder ? (__(props.placeholder) || undefined) : undefined
98
98
  })