diff --git a/ghost/admin/app/components/gh-input-with-select/index.js b/ghost/admin/app/components/gh-input-with-select/index.js index b555526321..8a950419f3 100644 --- a/ghost/admin/app/components/gh-input-with-select/index.js +++ b/ghost/admin/app/components/gh-input-with-select/index.js @@ -92,11 +92,12 @@ export default class GhInputWithSelectComponent extends Component { }; } + buildSuggestionLabel(term) { if (this.args.buildSuggestion) { return this.args.buildSuggestion(term); } - return `Add "${term}"...`; + return `Create "${term}"...`; } } diff --git a/ghost/admin/app/components/gh-input-with-select/suggested-option.hbs b/ghost/admin/app/components/gh-input-with-select/suggested-option.hbs index fb536fb96b..63b8a1cd9e 100644 --- a/ghost/admin/app/components/gh-input-with-select/suggested-option.hbs +++ b/ghost/admin/app/components/gh-input-with-select/suggested-option.hbs @@ -1 +1 @@ -{{@option.text}} \ No newline at end of file +{{@option.text}} \ No newline at end of file diff --git a/ghost/admin/lib/koenig-editor/addon/components/koenig-snippet-input-labs.hbs b/ghost/admin/lib/koenig-editor/addon/components/koenig-snippet-input-labs.hbs index a74cbe885e..6df034efb1 100644 --- a/ghost/admin/lib/koenig-editor/addon/components/koenig-snippet-input-labs.hbs +++ b/ghost/admin/lib/koenig-editor/addon/components/koenig-snippet-input-labs.hbs @@ -15,8 +15,10 @@ {{#if snippet.__isSuggestion__}} {{snippet}} {{else}} +
{{snippet.name}} - {{svg-jar "reload"}} + {{svg-jar "sync"}} +
{{/if}} \ No newline at end of file diff --git a/ghost/admin/public/assets/icons/sync.svg b/ghost/admin/public/assets/icons/sync.svg index 11aa18ffd5..fc847df3b3 100644 --- a/ghost/admin/public/assets/icons/sync.svg +++ b/ghost/admin/public/assets/icons/sync.svg @@ -1 +1,3 @@ - \ No newline at end of file + + + \ No newline at end of file