diff options
| author | Henry Jameson <me@hjkos.com> | 2024-02-21 14:05:26 +0200 |
|---|---|---|
| committer | Henry Jameson <me@hjkos.com> | 2024-02-21 14:05:26 +0200 |
| commit | d2f4ce442a7130f29aea72cfc558727e597dd1b4 (patch) | |
| tree | b8043ed9b46791b555cf5a420a1ca9dba6b9b999 /src/components | |
| parent | f609aaba0c9a7c4d3c3d579a2a0021ecd5fc4028 (diff) | |
fix attachment inputs
Diffstat (limited to 'src/components')
| -rw-r--r-- | src/components/attachment/attachment.style.js | 3 | ||||
| -rw-r--r-- | src/components/attachment/attachment.vue | 4 |
2 files changed, 4 insertions, 3 deletions
diff --git a/src/components/attachment/attachment.style.js b/src/components/attachment/attachment.style.js index 74e355c4..5fb4701c 100644 --- a/src/components/attachment/attachment.style.js +++ b/src/components/attachment/attachment.style.js @@ -3,7 +3,8 @@ export default { selector: '.Attachment', validInnerComponents: [ 'Border', - 'ButtonUnstyled' + 'ButtonUnstyled', + 'Input' ], defaultRules: [ { diff --git a/src/components/attachment/attachment.vue b/src/components/attachment/attachment.vue index 79f62806..39b1a409 100644 --- a/src/components/attachment/attachment.vue +++ b/src/components/attachment/attachment.vue @@ -38,7 +38,7 @@ v-if="edit" v-model="localDescription" type="text" - class="description-field" + class="input description-field" :placeholder="$t('post_status.media_description')" @keydown.enter.prevent="" > @@ -253,7 +253,7 @@ v-if="edit" v-model="localDescription" type="text" - class="description-field" + class="input description-field" :placeholder="$t('post_status.media_description')" @keydown.enter.prevent="" > |
