Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
@rosschapman ran into a weird bug when
ActionText
ing theMarkdownTextBlock
where the action text couldn't save itself. Basically we were using nested attributes with a faux-relationship; which meant the actualMarktdownTextBlock
was not getting saved.@anaulin pointed out that this is an example of the single-table-inheritance being annoying, and that maybe we should finally deal with the cruft and blurry lines from our initial
Furniture
implementation.So we started down the path of a refactor where we make a
Slot
responsible for where in a particularSection
aGizmo
should live; and whichGizmo
should live in that spot.So we wrote a System Spec, and then we started implementing it and realized we had gone down the wrong pathyway, we want to create the
Gizmo
first and then add theSlot
!So we're going to reset and move forward with making a
Card
for eachGizmo
!Sections#edit
page so that our newGizmo
management interface is a collection ofCardComponents
that link to the particularGizmo
's#new
page.