Dashboard empty view #707
Reference in New Issue
Block a user
Delete Branch "claudey-dashboard-empty-view"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Fixes #706
Nice work here! There was one small change that will need to be made that I left a comment about.
In addition, could we also perform this logic on the
/accounts/summarypage as well? To do this, I'd recommend placing the "No Accounts" message in a partial so that you can reuse it across these two views.@@ -3,13 +3,18 @@<div>In order to use the
@accountsinstance variable, it will need to be defined within thepages_controller#dashboardaction.Since we already have an
@account_groupsvariable defined there, I'd recommend a small refactor like so:@claudey also, don't worry about the failing tests—I'll be coming back to fix those after I get some other work done.
@@ -3,13 +3,18 @@<div>Thanks for the recommendation. I've added it in now.
Looks good, nice work!