mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-07 16:44:07 +01:00
Fix missing default button images
This commit is contained in:
parent
c49f7849bb
commit
d87e0c7f38
@ -310,9 +310,11 @@ export const ButtonMixin = <T extends Constructor>(superclass : T) => class exte
|
|||||||
|
|
||||||
if(!this.image)
|
if(!this.image)
|
||||||
{
|
{
|
||||||
for(const image in ButtonMixin.default_background_images)
|
// @ts-ignore
|
||||||
|
for(const image in this.constructor.default_background_images)
|
||||||
{
|
{
|
||||||
if(check_id.match(ButtonMixin.default_background_images[image]))
|
// @ts-ignore
|
||||||
|
if(check_id.match(this.constructor.default_background_images[image]))
|
||||||
{
|
{
|
||||||
return image;
|
return image;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user