1
0
mirror of https://github.com/devcode-it/openstamanager.git synced 2025-06-05 22:09:38 +02:00

fix: Fix Material web pre15 BC

This commit is contained in:
Maicol Battistini
2023-08-17 15:36:30 +02:00
parent 446011eecb
commit 13a6dba0ed
16 changed files with 132 additions and 100 deletions

View File

@@ -40,7 +40,7 @@ export default class Drawer<A extends DrawerAttributes = DrawerAttributes> exten
const DrawerTag = isMobile() ? 'md-navigation-drawer-modal' : 'md-navigation-drawer';
return (
<DrawerTag opened={this.open()}>
{DrawerTag === 'md-navigation-drawer-modal' && <md-standard-icon-button onclick={this.onMobileMenuButtonClick.bind(this)}><MdIcon icon={mdiMenuOpen}/></md-standard-icon-button>}
{DrawerTag === 'md-navigation-drawer-modal' && <md-icon-button onclick={this.onMobileMenuButtonClick.bind(this)}><MdIcon icon={mdiMenuOpen}/></md-icon-button>}
<md-list>{this.entries().values<VnodeCollectionItem>().all()}</md-list>
</DrawerTag>
);