mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-22 06:30:59 +01:00
Calendar: Fix recurring event prompt did not have labels or icons on buttons
This commit is contained in:
parent
6118bf6a7a
commit
81378fe3a5
@ -18,6 +18,14 @@ import {PropertyValues} from "@lion/core";
|
|||||||
|
|
||||||
export class Et2Button extends ButtonMixin(Et2InputWidget(SlButton))
|
export class Et2Button extends ButtonMixin(Et2InputWidget(SlButton))
|
||||||
{
|
{
|
||||||
|
static get properties()
|
||||||
|
{
|
||||||
|
return {
|
||||||
|
...super.properties,
|
||||||
|
label: {type: String}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
protected firstUpdated(_changedProperties : PropertyValues)
|
protected firstUpdated(_changedProperties : PropertyValues)
|
||||||
{
|
{
|
||||||
super.firstUpdated(_changedProperties);
|
super.firstUpdated(_changedProperties);
|
||||||
|
@ -1349,10 +1349,11 @@ export class et2_calendar_event extends et2_valueWidget implements et2_IDetached
|
|||||||
label: egw.lang("Edit exception"),
|
label: egw.lang("Edit exception"),
|
||||||
id: "exception",
|
id: "exception",
|
||||||
class: "ui-priority-primary",
|
class: "ui-priority-primary",
|
||||||
"default": true
|
default: true,
|
||||||
|
image: 'edit'
|
||||||
},
|
},
|
||||||
{label: egw.lang("Edit series"), id: "series"},
|
{label: egw.lang("Edit series"), id: "series", image: 'recur'},
|
||||||
{label: egw.lang("Cancel"), id: "cancel"}
|
{label: egw.lang("Cancel"), id: "cancel", image: 'cancel'}
|
||||||
];
|
];
|
||||||
Et2Dialog.show_dialog(
|
Et2Dialog.show_dialog(
|
||||||
function(button_id)
|
function(button_id)
|
||||||
|
Loading…
Reference in New Issue
Block a user