- updated users table;

This commit is contained in:
Vitalii Kiiko
2024-10-21 12:31:49 +02:00
30 changed files with 1157 additions and 196 deletions

View File

@@ -40,6 +40,13 @@ const AppSidebar = () => {
id: 4,
enable: intersection(permissions, ['VIEW_CALLS']).length
},
{
label: __('Domande da valutare', 'gepafin'),
icon: 'pi pi-calendar-clock',
href: '/valutazioni',
id: 4,
enable: intersection(permissions, ['EVALUATE_APPLICATIONS']).length
},
{
label: __('Gestione Utenti', 'gepafin'),
icon: 'pi pi-users',

View File

@@ -27,9 +27,10 @@ const AppTopbar = () => {
<i className="pi pi-bell p-overlay-badge topBar__icon">
<Badge value="0"></Badge>
</i>
<i className="pi pi-envelope p-overlay-badge topBar__icon">
<i className="pi pi-envelope topBar__icon"></i>
{/*<i className="pi pi-envelope p-overlay-badge topBar__icon">
<Badge severity="danger"></Badge>
</i>
</i>*/}
<Button
className="topBar__profileBtn"
outlined
@@ -40,7 +41,7 @@ const AppTopbar = () => {
<TopBarProfileMenu menuLeftRef={menuLeft}/>
</div>
return(
return (
<Toolbar start={startContent} end={endContent} className="topBar"/>
)
}