mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-11 03:53:02 +00:00
Add a new mode to AuthorityConfidenceStateDirective to configure use fontawesome icons instead of class defined in style property
This commit is contained in:
@@ -147,19 +147,23 @@ export const environment: BuildConfig = {
|
||||
confidence: [
|
||||
{
|
||||
value: 600,
|
||||
style: 'text-success'
|
||||
style: 'text-success',
|
||||
icon: 'fa-circle-check'
|
||||
},
|
||||
{
|
||||
value: 500,
|
||||
style: 'text-info'
|
||||
style: 'text-info',
|
||||
icon: 'fa-gear'
|
||||
},
|
||||
{
|
||||
value: 400,
|
||||
style: 'text-warning'
|
||||
style: 'text-warning',
|
||||
icon: 'fa-circle-question'
|
||||
},
|
||||
{
|
||||
value: 'default',
|
||||
style: 'text-muted'
|
||||
style: 'text-muted',
|
||||
icon: 'fa-circle-xmark'
|
||||
},
|
||||
]
|
||||
}
|
||||
|
Reference in New Issue
Block a user