-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Refactoring of dataset group selector
- Loading branch information
1 parent
2f2e7b5
commit 6488b09
Showing
9 changed files
with
115 additions
and
265 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
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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
{ | ||
"version": "1.3.1", | ||
"version": "1.4.0", | ||
"name": "Data Approval", | ||
"description": "Approvals app for PEPFAR", | ||
"icons": { | ||
|
@@ -11,7 +11,7 @@ | |
"company": "DHIS2 Core Team", | ||
"email": "[email protected]" | ||
}, | ||
"launch_path": "index.html?v=1.3.1", | ||
"launch_path": "index.html?v=1.4.0", | ||
"default_locale": "en", | ||
"activities": { | ||
"dhis": { | ||
|
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 |
---|---|---|
@@ -1,11 +1,8 @@ | ||
function dataSetGroupServiceMock() { | ||
function dataSetGroupServiceMock(rx) { | ||
return { | ||
datasetGroups: [ 'MER', 'EA' ], | ||
getDataSetGroupNames: function () { | ||
return this.datasetGroups; | ||
}, | ||
getDataSetsForGroup: function () { | ||
return []; | ||
} | ||
} | ||
setCurrentDataSetGroup: function () {}, | ||
dataSetGroups$: rx.Observable.just(['MER', 'EA']) | ||
// currentDataSetGroup$: currentDataSetGroup$, | ||
// getDataSetsForGroup: getDataSetsForGroup | ||
}; | ||
} |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.