-
Notifications
You must be signed in to change notification settings - Fork 9
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add image columns to tables #897
Merged
takinbo
merged 15 commits into
nditech:develop
from
dodumosu:add-image-columns-to-tables
Sep 14, 2022
Merged
Add image columns to tables #897
takinbo
merged 15 commits into
nditech:develop
from
dodumosu:add-image-columns-to-tables
Sep 14, 2022
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
takinbo
requested changes
Sep 13, 2022
- fix for crash when multiselect field exists in form - render Close button at all times - sort options for multiselect fields - don't display last update for checklists if they haven't been updated * fix: set empty array for multiselect fields * chore: improve initializer for form list
Bumps [moment-timezone](https://github.com/moment/moment-timezone) from 0.5.27 to 0.5.35. - [Release notes](https://github.com/moment/moment-timezone/releases) - [Changelog](https://github.com/moment/moment-timezone/blob/develop/changelog.md) - [Commits](moment/moment-timezone@0.5.27...0.5.35) --- updated-dependencies: - dependency-name: moment-timezone dependency-type: direct:production ... Signed-off-by: dependabot[bot] <[email protected]> Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
…tech#898) Bumps [scss-tokenizer](https://github.com/sasstools/scss-tokenizer) and [node-sass](https://github.com/sass/node-sass). These dependencies needed to be updated together. Updates `scss-tokenizer` from 0.2.3 to 0.4.3 - [Release notes](https://github.com/sasstools/scss-tokenizer/releases) - [Commits](sasstools/scss-tokenizer@v0.2.3...v0.4.3) Updates `node-sass` from 7.0.0 to 7.0.3 - [Release notes](https://github.com/sass/node-sass/releases) - [Changelog](https://github.com/sass/node-sass/blob/master/CHANGELOG.md) - [Commits](sass/node-sass@v7.0.0...v7.0.3) --- updated-dependencies: - dependency-name: scss-tokenizer dependency-type: indirect - dependency-name: node-sass dependency-type: direct:development ... Signed-off-by: dependabot[bot] <[email protected]> Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
* feat: transform string data for integral fields * chore: clear refs to participant completion rating
* caching of remote dependencies
takinbo
approved these changes
Sep 14, 2022
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Adds one to two extra columns to submission (checklist/incident/survey) tabular views, depending on if images fields are defined for the form in the form builder:
This pull request also adds the
text/plain
mimetype for spreadsheet imports, since if that mimetype is detected, an otherwise valid CSV import wouldn't be processed.see nditech/apollo-issues#184. this pull request supercedes #895