-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
* mobile survey header * custom icons * Update SurveyMobilePaginator.tsx * wip * fix(tupaiaWeb): RN-1512: Fix broken arithmetic visuals (#5980) Update utils.ts * survey select page * country selector * side menu * db(entityTypes): MAUI-4763: Add new entity types (pacmossi_insecticide_test) for PacMOSSI project (#5986) * pacmossi_insecticide_test entity type * schema and model update * copy and share * header style * Update dataTables.js * sticky header * tweak styles * style tweaks * Update ResultsList.tsx * refactor list * select list * mobile menu * toast styles * fix(datatrak): RN-1450: Fix mobile tooltips (#5971) * Update Tooltip.tsx * set delay on BaseTooltip --------- Co-authored-by: Andrew <[email protected]> * Update index.ts * tweaks * pr suggestions * Update CancelConfirmModal.tsx * tweak(datatrak): RN-1451: DataTrak request country access form (#6000) Update RequestCountryAccessForm.tsx * tweak(adminPanel): RN-1419: Don't delete survey screens and components on import unless they have changed (#5885) * Working check * Handle object equality with stringify * Fix object equality check * Remove console log --------- Co-authored-by: Andrew <[email protected]> * Update SurveyDisplayName.tsx --------- Co-authored-by: Salman <[email protected]> Co-authored-by: Andrew <[email protected]> Co-authored-by: alexd-bes <[email protected]>
- Loading branch information
1 parent
5ea7097
commit a3591e6
Showing
41 changed files
with
617 additions
and
185 deletions.
There are no files selected for viewing
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
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
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
29 changes: 29 additions & 0 deletions
29
...ase/src/migrations/20241104002014-addPacmossiInsecticideTestEntityType-modifies-schema.js
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
'use strict'; | ||
|
||
var dbm; | ||
var type; | ||
var seed; | ||
|
||
/** | ||
* We receive the dbmigrate dependency from dbmigrate initially. | ||
* This enables us to not have to rely on NODE_PATH. | ||
*/ | ||
exports.setup = function (options, seedLink) { | ||
dbm = options.dbmigrate; | ||
type = dbm.dataType; | ||
seed = seedLink; | ||
}; | ||
|
||
exports.up = function (db) { | ||
return db.runSql( | ||
`ALTER TYPE public.entity_type ADD VALUE IF NOT EXISTS 'pacmossi_insecticide_test'`, | ||
); | ||
}; | ||
|
||
exports.down = function (db) { | ||
return null; | ||
}; | ||
|
||
exports._meta = { | ||
version: 1, | ||
}; |
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
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
Oops, something went wrong.