Code development platform for open source projects from the European Union institutions

Skip to content
Snippets Groups Projects
Commit ebbb5682 authored by Sebastian-Ion TINCU's avatar Sebastian-Ion TINCU
Browse files

EDELIVERY-3687 SMP UI Add/Edit user

Add missing styles URLs property to the save dialog.
Reorder options inside the user roles select.
parent 9f10c2a3
No related branches found
No related tags found
No related merge requests found
......@@ -3,7 +3,8 @@ import {MdDialogRef} from "@angular/material";
@Component({
selector: 'app-messagefilter-dialog',
templateUrl: './save-dialog.component.html'
templateUrl: './save-dialog.component.html',
styleUrls: ['./save-dialog.component.css']
})
export class SaveDialogComponent {
......
......@@ -11,6 +11,6 @@ export class UserService {
getUserRoles$() {
// return this.http.get('rest/user/userroles');
// TODO create the endpoint
return Observable.of({json: () => [Role.SMP_ADMINISTRATOR, Role.SERVICE_GROUP_ADMINISTRATOR, Role.SYSTEM_ADMINISTRATOR]});
return Observable.of({json: () => [Role.SYSTEM_ADMINISTRATOR, Role.SMP_ADMINISTRATOR, Role.SERVICE_GROUP_ADMINISTRATOR]});
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment