mirror of
https://github.com/TryGhost/Ghost-Admin.git
synced 2023-12-14 02:33:04 +01:00
Koenig - Fix card tests (missing action placeholders)
This commit is contained in:
parent
f3f3526818
commit
e167222332
5 changed files with 10 additions and 2 deletions
|
@ -22,6 +22,7 @@ export default Component.extend({
|
|||
editCard() {},
|
||||
saveCard() {},
|
||||
selectCard() {},
|
||||
deselectCard() {},
|
||||
deleteCard() {},
|
||||
|
||||
toolbar: computed('isEditing', function () {
|
||||
|
|
|
@ -3,5 +3,9 @@ import layout from '../templates/components/koenig-card-hr';
|
|||
|
||||
export default Component.extend({
|
||||
layout,
|
||||
tagName: ''
|
||||
tagName: '',
|
||||
|
||||
// closure actions
|
||||
selectCard() {},
|
||||
deselectCard() {}
|
||||
});
|
||||
|
|
|
@ -15,9 +15,10 @@ export default Component.extend({
|
|||
headerOffset: 0,
|
||||
|
||||
// closure actions
|
||||
selectCard() {},
|
||||
deselectCard() {},
|
||||
editCard() {},
|
||||
saveCard() {},
|
||||
selectCard() {},
|
||||
deleteCard() {},
|
||||
|
||||
toolbar: computed('isEditing', function () {
|
||||
|
|
|
@ -24,6 +24,7 @@ export default Component.extend({
|
|||
|
||||
// closure actions
|
||||
selectCard() {},
|
||||
deselectCard() {},
|
||||
editCard() {},
|
||||
saveCard() {},
|
||||
moveCursorToNextSection() {},
|
||||
|
|
|
@ -25,6 +25,7 @@ export default Component.extend({
|
|||
editCard() {},
|
||||
saveCard() {},
|
||||
selectCard() {},
|
||||
deselectCard() {},
|
||||
deleteCard() {},
|
||||
|
||||
renderedMarkdown: computed('payload.markdown', function () {
|
||||
|
|
Loading…
Reference in a new issue