OpenProject is the leading open source project management software.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
openproject/frontend/public/templates/components/inplace_editor/editable/select2.html

12 lines
357 B

<ui-select
name="value"
ng-disabled="isBusy"
ng-model="dataObject.value"
theme="select2">
<ui-select-match>{{$select.selected.name}}</ui-select-match>
<ui-select-choices
repeat="item.href as item in options | filter: $select.search">
<div ng-bind-html="item.name | highlight: $select.search"></div>
</ui-select-choices>
</ui-select>