diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2019-02-18 09:57:19 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2019-02-18 09:57:19 +0900 |
| commit | 9883c751dabb2d6c8e54c3d367626562f4b13ab4 (patch) | |
| tree | 5b15c94296118966326bfdc7d43c4b8e3c74e851 /src | |
| parent | :art: (diff) | |
| download | sharkey-9883c751dabb2d6c8e54c3d367626562f4b13ab4.tar.gz sharkey-9883c751dabb2d6c8e54c3d367626562f4b13ab4.tar.bz2 sharkey-9883c751dabb2d6c8e54c3d367626562f4b13ab4.zip | |
:art:
Diffstat (limited to 'src')
| -rw-r--r-- | src/client/app/common/views/components/ui/input.vue | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client/app/common/views/components/ui/input.vue b/src/client/app/common/views/components/ui/input.vue index a960c3a3c4..1ebf588507 100644 --- a/src/client/app/common/views/components/ui/input.vue +++ b/src/client/app/common/views/components/ui/input.vue @@ -7,7 +7,7 @@ </div> <span class="label" ref="label"><slot></slot></span> <span class="title" ref="title"><slot name="title"></slot></span> - <div class="prefix" ref="prefix"><slot name="prefix"></slot></div> + <div class="prefix" ref="prefix"><span><slot name="prefix"></slot></span></div> <template v-if="type != 'file'"> <input ref="input" :type="type" @@ -37,7 +37,7 @@ @change="onChangeFile" > </template> - <div class="suffix" ref="suffix"><slot name="suffix"></slot></div> + <div class="suffix" ref="suffix"><span><slot name="suffix"></slot></span></div> </div> <div class="toggle" v-if="withPasswordToggle"> <a @click='togglePassword'> |