We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 797fddf commit 0f8f906Copy full SHA for 0f8f906
resources/js/packages/ui/src/FullCalendar/activityTypes.ts
@@ -1,6 +1,6 @@
1
export interface WindowActivityInPeriod {
2
appName: string;
3
- url: string | null;
+ label: string | null;
4
count: number;
5
icon?: string | null;
6
}
resources/js/packages/ui/src/FullCalendar/useActivityBoxes.ts
@@ -37,7 +37,7 @@ export function useActivityBoxes(params: {
37
38
39
function getActivityText(activity: WindowActivityInPeriod): string {
40
- return activity.url ? `${activity.appName} - ${activity.url}` : activity.appName;
+ return activity.label ? `${activity.appName} - ${activity.label}` : activity.appName;
41
42
43
const activityBoxes = computed<ActivityBox[]>(() => {
0 commit comments