Skip to content

Commit b424a04

Browse files
committed
Merge discvr-26.7 to develop
2 parents ee9eec5 + 671c645 commit b424a04

8 files changed

Lines changed: 248 additions & 252 deletions

File tree

.github/workflows/branch_release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919

2020
steps:
2121
- name: Checkout
22-
uses: actions/checkout@v3
22+
uses: actions/checkout@v7
2323

2424
- name: Create branches and PRs
2525
uses: LabKey/gitHubActions/branch-release@develop

.github/workflows/merge_release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121

2222
steps:
2323
- name: Checkout
24-
uses: actions/checkout@v3
24+
uses: actions/checkout@v7
2525

2626
- name: Merge PR
2727
uses: LabKey/gitHubActions/merge-release@develop

mGAP/src/org/labkey/mgap/mGAPModule.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ public void doStartupAfterSpringConfig(ModuleContext moduleContext)
109109
SystemMaintenance.addTask(new mGapMaintenanceTask());
110110

111111
ContentSecurityPolicyFilter.registerAllowedSources(this.getClass().getName(), Directive.Connection, "https://code.jquery.com", "https://*.fontawesome.com");
112-
ContentSecurityPolicyFilter.registerAllowedSources(this.getClass().getName(), Directive.Style, "https://code.jquery.com", "https://www.gstatic.com");
112+
ContentSecurityPolicyFilter.registerAllowedSources(this.getClass().getName(), Directive.Style, "https://code.jquery.com", "https://www.gstatic.com", "https://fonts.googleapis.com");
113113
ContentSecurityPolicyFilter.registerAllowedSources(this.getClass().getName(), Directive.Font, "https://*.fontawesome.com", "https://fonts.googleapis.com", "https://fonts.gstatic.com");
114114
ContentSecurityPolicyFilter.registerAllowedSources(this.getClass().getName(), Directive.Connection, "https://oss.maxcdn.com");
115115

mcc/package-lock.json

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

mcc/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
"google-palette": "^1.1.1"
2727
},
2828
"devDependencies": {
29-
"@labkey/build": "^9.1.0",
29+
"@labkey/build": "^9.1.5",
3030
"@types/chart.js": "^2.9.41",
3131
"@types/jexl": "^2.3.4",
3232
"@types/jquery": "^3.5.32",

mcc/src/client/U24Dashboard/Dashboard.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { ActionURL, Filter, getServerContext, Query } from '@labkey/api';
55

66
import PieChart from '../components/dashboard/PieChart';
77
import BarChart, { ColorType } from '../components/dashboard/BarChart';
8-
import { ActiveElement, Chart, ChartEvent } from 'chart.js/dist/types/index';
8+
import { ActiveElement, Chart, ChartEvent } from 'chart.js';
99

1010
export function Dashboard() {
1111
const [demographics, setDemographics] = useState<[]>(null);

mcc/src/client/components/dashboard/BarChart.tsx

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,15 @@
11
import React, { useEffect, useRef } from 'react';
2-
import { BarController, BarElement, CategoryScale, Chart, Legend, LinearScale, Tooltip } from 'chart.js';
3-
import { ActiveElement, ChartEvent } from 'chart.js/dist/types/index';
2+
import {
3+
ActiveElement,
4+
BarController,
5+
BarElement,
6+
CategoryScale,
7+
Chart,
8+
ChartEvent,
9+
Legend,
10+
LinearScale,
11+
Tooltip
12+
} from 'chart.js';
413

514
Chart.register(Legend, BarController, BarElement, CategoryScale, LinearScale, Tooltip);
615

mcc/src/org/labkey/mcc/MccModule.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ protected void doStartupAfterSpringConfig(ModuleContext moduleContext)
139139
SystemMaintenance.addTask(new MccMaintenanceTask());
140140

141141
ContentSecurityPolicyFilter.registerAllowedSources(this.getClass().getName(), Directive.Connection, "https://cdn.datatables.net", "https://code.jquery.com", "https://*.fontawesome.com", "https://oss.maxcdn.com");
142-
ContentSecurityPolicyFilter.registerAllowedSources(this.getClass().getName(), Directive.Style, "https://cdn.datatables.net", "https://code.jquery.com", "https://www.gstatic.com");
142+
ContentSecurityPolicyFilter.registerAllowedSources(this.getClass().getName(), Directive.Style, "https://cdn.datatables.net", "https://code.jquery.com", "https://www.gstatic.com", "https://fonts.googleapis.com");
143143
ContentSecurityPolicyFilter.registerAllowedSources(this.getClass().getName(), Directive.Image, "https://cdn.datatables.net");
144144
ContentSecurityPolicyFilter.registerAllowedSources(this.getClass().getName(), Directive.Font, "https://*.fontawesome.com", "https://fonts.googleapis.com", "https://www.gstatic.com");
145145
}

0 commit comments

Comments
 (0)