Skip to content

Commit 04f69cb

Browse files
authored
Merge pull request #2028 from HSLdevcom/63718-missing-codes
added logging
2 parents 7b125f8 + 5f33a62 commit 04f69cb

File tree

3 files changed

+1
-3
lines changed

3 files changed

+1
-3
lines changed

src/components/shared/RoutePathList.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,6 @@ class RoutePathList extends React.Component<IRoutePathListProps, IRoutePathListS
4040
}
4141

4242
private renderRoutePathRow = (routePath: IRoutePathWithDisabledInfo, key: string) => {
43-
console.log(routePath)
4443
return (
4544
<div
4645
key={key}

src/components/sidebar/nodeView/NodeForm.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,7 @@ class NodeForm extends Component<INodeFormProps> {
9292
}
9393
}
9494
}
95+
console.log(dropdownItems)
9596
return dropdownItems;
9697
};
9798

src/stores/codeListStore.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,6 @@ class CodeListStore {
4848

4949
public getDropdownItemList = (codeListName: codeListName): IDropdownItem[] => {
5050
const codeListItems = this._codeListMap.get(codeListName);
51-
console.log(codeListItems)
5251
if (codeListItems) {
5352
return codeListItems.map((codeListItem: ICodeListItem) => {
5453
return {
@@ -63,7 +62,6 @@ class CodeListStore {
6362
// TODO: rename as getCodeListValueLabel?
6463
public getCodeListLabel = (codeListName: codeListName, value: string) => {
6564
const codeListItems = this._codeListMap.get(codeListName);
66-
console.log(codeListItems)
6765
if (codeListItems) {
6866
const item = codeListItems.find(
6967
(item) => item.listId === codeListName && item.value === value

0 commit comments

Comments
 (0)