-Quando insersci l'username telegram sul Profilo, devo togliergli la chiocciola !
- anche nella ricerca User
This commit is contained in:
@@ -128,6 +128,11 @@ export default defineComponent({
|
||||
required: false,
|
||||
default: false,
|
||||
},
|
||||
notAllowAtChar: { // @
|
||||
type: Boolean,
|
||||
required: false,
|
||||
default: false,
|
||||
},
|
||||
},
|
||||
components: { CMyPopupEdit },
|
||||
setup(props, { emit }) {
|
||||
@@ -152,7 +157,12 @@ export default defineComponent({
|
||||
}
|
||||
|
||||
function save(newval: any) {
|
||||
emit('save', newval)
|
||||
let valore = newval
|
||||
if (props.notAllowAtChar) {
|
||||
valore = tools.rimuoviAtPrimoCarattere(valore)
|
||||
}
|
||||
emit('save', valore)
|
||||
|
||||
}
|
||||
|
||||
function withBorder() {
|
||||
|
||||
Reference in New Issue
Block a user