File tree 1 file changed +7
-4
lines changed
src/components/MewAddressSelect
1 file changed +7
-4
lines changed Original file line number Diff line number Diff line change 16
16
:disabled =" disabled"
17
17
:error-messages =" errorMessages"
18
18
:hint =" hint || resolvedAddr || ''"
19
- :persistent-hint =" hint.length > 0 || resolvedAddr.length > 0"
19
+ :persistent-hint =" resolvedAddr.length > 0"
20
20
:rules =" rules"
21
21
:no-data-text =" noDataText"
22
22
:menu-props =" { value: dropdown, closeOnClick: true }"
@@ -144,7 +144,7 @@ export default {
144
144
},
145
145
props: {
146
146
/**
147
- * Text displayed under the input container.
147
+ * Text displayed under the input container.
148
148
*/
149
149
hint: {
150
150
type: String ,
@@ -272,17 +272,20 @@ export default {
272
272
* the blockie for the regular address value.
273
273
*/
274
274
blockieHash () {
275
+ return this .addressValue .address || this .addressValue ;
276
+ /*
275
277
return this.resolvedAddr.length > 0
276
278
? this.resolvedAddr
277
279
: this.addressValue.address
278
280
? this.addressValue.address
279
281
: this.addressValue;
282
+ */
280
283
}
281
284
},
282
285
methods: {
283
286
/**
284
- * Clears the v-model value.
285
- */
287
+ * Clears the v-model value.
288
+ */
286
289
clear () {
287
290
this .addressValue = ' ' ;
288
291
},
You can’t perform that action at this time.
0 commit comments