Skip to content

Commit b6ac7df

Browse files
committed
fix: remove erroneous size attrs from PasswordStrengthRenderer and Readme
1 parent 8cd3e18 commit b6ac7df

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

packages/vue-vuetify/README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,11 +133,12 @@ For more information on how JSON Forms can be configured, please see the [README
133133
All control renderers now support `prepend` and `append` slots, allowing you to add custom content before or after input fields without creating entirely custom renderers.
134134

135135
**Example:**
136+
136137
```vue
137138
<template>
138139
<string-control-renderer v-bind="$props">
139140
<template #prepend>
140-
<v-icon size="small">mdi-help-circle</v-icon>
141+
<v-icon>mdi-help-circle</v-icon>
141142
</template>
142143
</string-control-renderer>
143144
</template>

packages/vue-vuetify/dev/renderers/PasswordStrengthRenderer.vue

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
<v-icon
99
v-bind="tooltipProps"
1010
:color="strengthColor"
11-
size="small"
1211
class="mr-1"
1312
aria-hidden="true"
1413
tabindex="-1"
@@ -82,5 +81,4 @@ const strengthTooltip = computed(() => {
8281
];
8382
return `${labels[strength.value]}: ${tips[strength.value]}`;
8483
});
85-
8684
</script>

0 commit comments

Comments
 (0)