Skip to content
This repository was archived by the owner on Mar 4, 2025. It is now read-only.

Commit 7bcd608

Browse files
author
vikasrohit
committed
Merge pull request #488 from appirio-tech/feature/quick-fixes-pre-first-ga-release
SUP-2286, [Registration] Skill picker issue
2 parents 7280991 + 4fe6554 commit 7bcd608

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

app/directives/busy-button/busy-button.directive.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@
2323
scope);
2424
element.attr('disabled', true).html('').append(busyMessageHtml);
2525
} else {
26-
// remove the disabled attribute only if either element does not have ng-disabled set
26+
// remove the disabled attribute only if either element does not have disabled set
2727
// or it evaluates to false
28-
if (!attr.ngDisabled || !$parse(attr.ngDisabled)) {
28+
if (!attrs.disabled) {
2929
element.removeAttr('disabled').html(scope.originalContent);
3030
}
3131
}

0 commit comments

Comments
 (0)