Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
## [Unreleased]

### Added
- Add placeholder text to make clear URLs can be used as image source
[#835](https://github.com/nextcloud/cookbook/pull/835) @seyfeb

### Fixed
- CI build always builds docker images from scratch
[#823](https://github.com/nextcloud/cookbook/pull/823) @christianlupus
Expand Down
6 changes: 6 additions & 0 deletions src/components/EditImageField.vue
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@
<input
type="text"
:value="value"
:placeholder="
t(
'cookbook',
'Enter URL or select from your Nextcloud instance on the right'
)
"
@input="$emit('input', $event.target.value)"
/>
<button
Expand Down