Skip to content

Commit

Permalink
Feedback from PR
Browse files Browse the repository at this point in the history
 * Deploy to sandbox
 * Attachments edit link goes to correct page
 * Resources data types change to array of text instead of array of
strings
  • Loading branch information
jasalisbury committed Mar 9, 2021
1 parent 77173a4 commit 3050a42
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ parameters:
default: "main"
type: string
sandbox_git_branch: # change to feature branch to test deployment
default: "grantee-import-bugfix"
default: "js-283-frontend-updates"
type: string
jobs:
build_and_lint:
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/pages/ActivityReport/Pages/topicsResources.js
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ const ReviewSection = () => {
<Section
hidePrint={!hasAttachments}
key="Attachments"
basePath="attachments"
basePath="topics-resources"
anchor="attachments"
title="Attachments"
>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@ module.exports = {
queryInterface.addColumn('ActivityReports',
'nonECLKCResourcesUsed',
{
type: Sequelize.ARRAY(Sequelize.STRING),
type: Sequelize.ARRAY(Sequelize.TEXT),
}, { transaction }),
queryInterface.removeColumn('ActivityReports', 'resourcesUsed', { transaction }),
queryInterface.addColumn('ActivityReports',
'ECLKCResourcesUsed',
{
type: Sequelize.ARRAY(Sequelize.STRING),
type: Sequelize.ARRAY(Sequelize.TEXT),
}, { transaction }),
]);
});
Expand Down

0 comments on commit 3050a42

Please sign in to comment.