Skip to content

Commit e5ca431

Browse files
committed
more CR
1 parent 85ae2b8 commit e5ca431

7 files changed

Lines changed: 15 additions & 41 deletions

File tree

ehr/package-lock.json

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ehr/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"dependencies": {
1818
"@labkey/api": "1.45.0",
1919
"@labkey/components": "7.13.1",
20-
"@labkey/ehr": "0.0.4-fb-ehr-hist-id-search.14"
20+
"@labkey/ehr": "0.0.4-fb-ehr-hist-id-search.15"
2121
},
2222
"devDependencies": {
2323
"@labkey/build": "8.7.0",

labkey-ui-ehr/package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

labkey-ui-ehr/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@labkey/ehr",
3-
"version": "0.0.4-fb-ehr-hist-id-search.14",
3+
"version": "0.0.4-fb-ehr-hist-id-search.15",
44
"description": "Components, models, actions, and utility functions for LabKey EHR applications and pages",
55
"sideEffects": false,
66
"files": [

labkey-ui-ehr/src/ParticipantHistory/SearchByIdPanel/SearchByIdPanel.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ const SearchByIdPanelComponent: FC<SearchByIdPanelProps> = ({
193193
disabled={isResolving}
194194
onClick={handleUpdateReport}
195195
>
196-
{'Search By Ids'}
196+
Search By Ids
197197
</button>
198198
<button
199199
className={classNames('search-by-id-panel__filter-button', {

labkey-ui-ehr/src/ParticipantHistory/TabbedReportPanel/useReportTab.ts

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,11 @@ import {
1212
ReportFilters,
1313
} from '../models';
1414

15+
export interface ReportTabState {
16+
tab: ExtReportTab | null;
17+
targetRef: React.RefObject<HTMLDivElement>;
18+
}
19+
1520
/**
1621
* Hook that creates and manages an ExtJS report tab container.
1722
*
@@ -21,7 +26,7 @@ import {
2126
export function useReportTab(
2227
report: ReportConfig,
2328
filters: ReportFilters
24-
): { tab: ExtReportTab | null; targetRef: React.RefObject<HTMLDivElement> } {
29+
): ReportTabState {
2530
const targetRef = useRef<HTMLDivElement>(null);
2631
const [tab, setTab] = useState<ExtReportTab | null>(null);
2732

labkey-ui-ehr/src/ParticipantHistory/test/apiWrapperUtils.ts

Lines changed: 0 additions & 31 deletions
This file was deleted.

0 commit comments

Comments
 (0)