Compare commits
1 commit
main
...
patch/main
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
dc03ca6459 |
4 changed files with 5 additions and 3 deletions
2
.github/workflows/patch-build.yaml
vendored
2
.github/workflows/patch-build.yaml
vendored
|
|
@ -214,7 +214,7 @@ jobs:
|
||||||
|
|
||||||
# Build FOSS and EE versions
|
# Build FOSS and EE versions
|
||||||
build_service "$service" "$version" "$foss_build_args"
|
build_service "$service" "$version" "$foss_build_args"
|
||||||
build_service "$service" "${version}-ee" "$ee_build_args"
|
build_service "$service" "$version" "$ee_build_args"
|
||||||
|
|
||||||
# Build managed version for specific services
|
# Build managed version for specific services
|
||||||
if [[ "$service" != "chalice" && "$service" != "frontend" ]]; then
|
if [[ "$service" != "chalice" && "$service" != "frontend" ]]; then
|
||||||
|
|
|
||||||
|
|
@ -117,6 +117,8 @@ const ListView: React.FC<Props> = ({
|
||||||
if (disableSelection) {
|
if (disableSelection) {
|
||||||
const path = withSiteId(`/metrics/${metric.metricId}`, siteId);
|
const path = withSiteId(`/metrics/${metric.metricId}`, siteId);
|
||||||
history.push(path);
|
history.push(path);
|
||||||
|
} else {
|
||||||
|
toggleSelection?.(metric.metricId);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -467,7 +467,7 @@ export default class DashboardStore {
|
||||||
this.isSaving = true;
|
this.isSaving = true;
|
||||||
try {
|
try {
|
||||||
try {
|
try {
|
||||||
await dashboardService.addWidget(dashboard, metricIds);
|
const response = await dashboardService.addWidget(dashboard, metricIds);
|
||||||
toast.success('Card added to dashboard.');
|
toast.success('Card added to dashboard.');
|
||||||
} catch {
|
} catch {
|
||||||
toast.error('Card could not be added.');
|
toast.error('Card could not be added.');
|
||||||
|
|
|
||||||
|
|
@ -18,4 +18,4 @@ version: 0.1.10
|
||||||
# incremented each time you make changes to the application. Versions are not expected to
|
# incremented each time you make changes to the application. Versions are not expected to
|
||||||
# follow Semantic Versioning. They should reflect the version the application is using.
|
# follow Semantic Versioning. They should reflect the version the application is using.
|
||||||
# It is recommended to use it with quotes.
|
# It is recommended to use it with quotes.
|
||||||
AppVersion: "v1.22.42"
|
AppVersion: "v1.22.41"
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue