You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Like the noEventBehavior clickable label, I'd like to suggest to add the url on noRemindersBehavior label. Here's the part I modified, tested and working fine
// Display reminders on the widget.asyncreminders(column){if(!this.data.reminders){awaitthis.setupReminders()}constreminderSettings=this.settings.remindersconstsettingUrl=reminderSettings.url||""if(this.data.reminders.length==0){if(reminderSettings.noRemindersBehavior=="message"&&this.localization.noRemindersMessage.length){returnthis.provideText(this.localization.noRemindersMessage,column,this.format.noReminders,true,settingUrl ? reminderSettings.url : "x-apple-reminderkit://REMCDReminder/")}if(this[reminderSettings.noRemindersBehavior]){returnawaitthis[reminderSettings.noRemindersBehavior](column)}}constreminderStack=column.addStack()reminderStack.layoutVertically()reminderStack.setPadding(0,0,0,0)reminderStack.url=(settingUrl.length>0) ? settingUrl : "x-apple-reminderkit://REMCDReminder/"constnumberOfReminders=this.data.reminders.lengthconstshowListColor=reminderSettings.showListColorconstcolorShape=showListColor.includes("circle") ? "circle" : "rectangle"for(leti=0;i<numberOfReminders;i++){constreminder=this.data.reminders[i]consttitleStack=this.align(reminderStack)titleStack.layoutHorizontally()
The text was updated successfully, but these errors were encountered:
Like the noEventBehavior clickable label, I'd like to suggest to add the url on noRemindersBehavior label. Here's the part I modified, tested and working fine
The text was updated successfully, but these errors were encountered: