Enable calendar (#6562)

This commit is contained in:
Denis Bykhov 2024-09-13 19:44:32 +05:00 committed by GitHub
parent 0a32f8885b
commit 0ba3e2efbc
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 17 additions and 17 deletions

View File

@ -178,7 +178,7 @@ export default function buildModel (enabled: string[] = ['*'], disabled: string[
{
label: calendar.string.ConfigLabel,
description: calendar.string.ConfigDescription,
enabled: false,
enabled: true,
beta: true,
icon: calendar.icon.Calendar,
classFilter: defaultFilter

View File

@ -272,22 +272,22 @@ export function createModel (builder: Builder): void {
calendar.category.Calendar
)
createAction(
builder,
{
action: calendar.actionImpl.SaveEventReminder,
label: calendar.string.RemindMeAt,
icon: calendar.icon.Reminder,
input: 'focus',
category: calendar.category.Calendar,
target: calendar.class.Event,
context: {
mode: 'context',
group: 'create'
}
},
calendar.action.SaveEventReminder
)
// createAction(
// builder,
// {
// action: calendar.actionImpl.SaveEventReminder,
// label: calendar.string.RemindMeAt,
// icon: calendar.icon.Reminder,
// input: 'focus',
// category: calendar.category.Calendar,
// target: calendar.class.Event,
// context: {
// mode: 'context',
// group: 'create'
// }
// },
// calendar.action.SaveEventReminder
// )
createAction(
builder,